File: /opt/aphex/sites/voleursdechevaux.be/db.sql
-- MySQL dump 10.13 Distrib 8.0.32, for Linux (x86_64)
--
-- Host: localhost Database: voleursdechevaux_be
-- ------------------------------------------------------
-- Server version 8.0.32-0ubuntu0.20.04.2
/*!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 */;
/*!50503 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `wp_actionscheduler_actions`
--
DROP TABLE IF EXISTS `wp_actionscheduler_actions`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_actions` (
`action_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`hook` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`scheduled_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`scheduled_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`args` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`schedule` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
`group_id` bigint unsigned NOT NULL DEFAULT '0',
`attempts` int NOT NULL DEFAULT '0',
`last_attempt_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`last_attempt_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`claim_id` bigint unsigned NOT NULL DEFAULT '0',
`extended_args` varchar(8000) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`action_id`),
KEY `hook` (`hook`),
KEY `status` (`status`),
KEY `scheduled_date_gmt` (`scheduled_date_gmt`),
KEY `args` (`args`),
KEY `group_id` (`group_id`),
KEY `last_attempt_gmt` (`last_attempt_gmt`),
KEY `claim_id` (`claim_id`)
) ENGINE=InnoDB AUTO_INCREMENT=17 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_actions`
--
LOCK TABLES `wp_actionscheduler_actions` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_actions` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_actions` VALUES (15,'action_scheduler/migration_hook','complete','2020-06-04 05:23:16','2020-06-04 05:23:16','[]','O:30:\"ActionScheduler_SimpleSchedule\":2:{s:22:\"\0*\0scheduled_timestamp\";i:1591248196;s:41:\"\0ActionScheduler_SimpleSchedule\0timestamp\";i:1591248196;}',1,1,'2021-10-05 01:48:03','2021-10-05 01:48:03',0,NULL),(16,'wpforms_process_entry_emails_meta_cleanup','pending','2021-10-06 00:00:00','2021-10-06 00:00:00','{\"tasks_meta_id\":1}','O:32:\"ActionScheduler_IntervalSchedule\":5:{s:22:\"\0*\0scheduled_timestamp\";i:1633478400;s:18:\"\0*\0first_timestamp\";i:1633478400;s:13:\"\0*\0recurrence\";i:86400;s:49:\"\0ActionScheduler_IntervalSchedule\0start_timestamp\";i:1633478400;s:53:\"\0ActionScheduler_IntervalSchedule\0interval_in_seconds\";i:86400;}',2,0,'0000-00-00 00:00:00','0000-00-00 00:00:00',0,NULL);
/*!40000 ALTER TABLE `wp_actionscheduler_actions` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_claims`
--
DROP TABLE IF EXISTS `wp_actionscheduler_claims`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_claims` (
`claim_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`date_created_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`claim_id`),
KEY `date_created_gmt` (`date_created_gmt`)
) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_actionscheduler_claims`
--
LOCK TABLES `wp_actionscheduler_claims` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_actionscheduler_claims` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_groups`
--
DROP TABLE IF EXISTS `wp_actionscheduler_groups`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_groups` (
`group_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`slug` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
PRIMARY KEY (`group_id`),
KEY `slug` (`slug`(191))
) 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_actionscheduler_groups`
--
LOCK TABLES `wp_actionscheduler_groups` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_groups` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_groups` VALUES (1,'action-scheduler-migration'),(2,'wpforms');
/*!40000 ALTER TABLE `wp_actionscheduler_groups` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_actionscheduler_logs`
--
DROP TABLE IF EXISTS `wp_actionscheduler_logs`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_actionscheduler_logs` (
`log_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`action_id` bigint unsigned NOT NULL,
`message` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`log_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`log_date_local` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
PRIMARY KEY (`log_id`),
KEY `action_id` (`action_id`),
KEY `log_date_gmt` (`log_date_gmt`)
) 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_actionscheduler_logs`
--
LOCK TABLES `wp_actionscheduler_logs` WRITE;
/*!40000 ALTER TABLE `wp_actionscheduler_logs` DISABLE KEYS */;
INSERT INTO `wp_actionscheduler_logs` VALUES (1,15,'action created','2020-06-04 05:22:16','2020-06-04 05:22:16'),(2,15,'action started via Async Request','2021-10-05 01:48:03','2021-10-05 01:48:03'),(3,15,'action complete via Async Request','2021-10-05 01:48:03','2021-10-05 01:48:03'),(4,16,'action created','2021-10-05 01:48:04','2021-10-05 01:48:04');
/*!40000 ALTER TABLE `wp_actionscheduler_logs` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_commentmeta`
--
DROP TABLE IF EXISTS `wp_commentmeta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_commentmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_comments` (
`comment_ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`comment_post_ID` bigint unsigned NOT NULL DEFAULT '0',
`comment_author` tinytext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_author_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_url` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_author_IP` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`comment_karma` int NOT NULL DEFAULT '0',
`comment_approved` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
`comment_agent` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_parent` bigint unsigned NOT NULL DEFAULT '0',
`user_id` bigint 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;
--
-- Table structure for table `wp_links`
--
DROP TABLE IF EXISTS `wp_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`link_url` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_image` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_target` varchar(25) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_description` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_visible` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
`link_owner` bigint unsigned NOT NULL DEFAULT '1',
`link_rating` int NOT NULL DEFAULT '0',
`link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`link_rel` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`link_notes` mediumtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`link_rss` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_options` (
`option_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`option_name` varchar(191) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`option_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`autoload` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
PRIMARY KEY (`option_id`),
UNIQUE KEY `option_name` (`option_name`),
KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=1279 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://voleursdechevaux.be','yes'),(2,'home','http://voleursdechevaux.be','yes'),(3,'blogname','www.voleursdechevaux.be','yes'),(4,'blogdescription','','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','[email protected]','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','0','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','[email protected]','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','2','yes'),(19,'default_comment_status','closed','yes'),(20,'default_ping_status','closed','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','0','yes'),(28,'permalink_structure','/%postname%/','yes'),(29,'rewrite_rules','a:93:{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:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";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:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:57:\"wpforms_log_type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:52:\"wpforms_log_type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:55:\"index.php?wpforms_log_type=$matches[1]&feed=$matches[2]\";s:33:\"wpforms_log_type/([^/]+)/embed/?$\";s:49:\"index.php?wpforms_log_type=$matches[1]&embed=true\";s:45:\"wpforms_log_type/([^/]+)/page/?([0-9]{1,})/?$\";s:56:\"index.php?wpforms_log_type=$matches[1]&paged=$matches[2]\";s:27:\"wpforms_log_type/([^/]+)/?$\";s:38:\"index.php?wpforms_log_type=$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:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";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:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";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:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";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:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";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:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";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:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";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:57:\"[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\"[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:40:\"([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?name=$matches[1]&feed=$matches[2]\";s:35:\"([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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:46:\"[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:41:\"[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";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_plugins','a:11:{i:0;s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:91:\"all-in-one-wp-migration-multisite-extension/all-in-one-wp-migration-multisite-extension.php\";i:3;s:51:\"all-in-one-wp-migration/all-in-one-wp-migration.php\";i:4;s:31:\"cache-enabler/cache-enabler.php\";i:5;s:37:\"link-whisper-premium/link-whisper.php\";i:6;s:75:\"recent-posts-widget-with-thumbnails/recent-posts-widget-with-thumbnails.php\";i:7;s:47:\"simple-social-buttons/simple-social-buttons.php\";i:8;s:29:\"theme-editor/theme_editor.php\";i:9;s:37:\"wordpress-autoblogging/basic-auth.php\";i:10;s:24:\"wpforms-lite/wpforms.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','ocius','yes'),(41,'stylesheet','blog-belt','yes'),(42,'comment_whitelist','1','yes'),(43,'blacklist_keys','','no'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','47018','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','posts','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','0','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:2:{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;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}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:31:\"cache-enabler/cache-enabler.php\";a:2:{i:0;s:13:\"Cache_Enabler\";i:1;s:12:\"on_uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','0','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','31','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1603218272','yes'),(94,'initial_db_version','47018','yes'),(95,'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'),(96,'fresh_site','0','yes'),(97,'widget_search','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(98,'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'),(99,'widget_recent-comments','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;i:4;a:0:{}}','yes'),(100,'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'),(101,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(102,'sidebars_widgets','a:6:{s:19:\"wp_inactive_widgets\";a:3:{i:0;s:10:\"archives-2\";i:1;s:6:\"meta-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-1\";a:6:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:11:\"tag_cloud-2\";i:3;s:37:\"recent-posts-widget-with-thumbnails-3\";i:4;s:10:\"calendar-3\";i:5;s:13:\"media_image-3\";}s:8:\"footer-1\";a:1:{i:0;s:13:\"media_video-3\";}s:8:\"footer-2\";a:1:{i:0;s:13:\"media_image-4\";}s:8:\"footer-3\";a:1:{i:0;s:16:\"wpforms-widget-3\";}s:13:\"array_version\";i:3;}','yes'),(103,'widget_tag_cloud','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(104,'db-version-secure','yFtgxEX9j0','yes'),(105,'tagline','','yes'),(107,'auth_key','pt/$o&:-RD5@&D)e`ms2p5!SF7mgMI95cAFqP7@MN?a/tIG048F@1Qk*.~:nvp<z','no'),(108,'auth_salt','#Ckld,JxqqH+pzh;y:U<m{AF5#IELun-?gET_XHKL%qvfj~b9Ev|W--`qPn3tUg<','no'),(109,'logged_in_key','+we#<>)k|idb*PHBmP~VYy4(2<qM,2#ETpWhr<3[:+hkl:ug;]Mu`03)qHU(9]xX','no'),(110,'logged_in_salt','(uru8unc3eH^)/u2Vj:p-l&F]RSR{sJ;9Y7idORuMLL`&:PgK0f0}W/+zpetm{A@','no'),(111,'cron','a:10:{i:1633400054;a:1:{s:26:\"action_scheduler_run_queue\";a:1:{s:32:\"0d04ed39571b55704c122d726248bbac\";a:3:{s:8:\"schedule\";s:12:\"every_minute\";s:4:\"args\";a:1:{i:0;s:7:\"WP Cron\";}s:8:\"interval\";i:60;}}}i:1633400756;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:1633408736;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:1633415156;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:1633458328;a:1:{s:15:\"ebn_optimize_db\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1633458356;a:3:{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;}}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;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1633717556;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;}}}i:1633960800;a:1:{s:28:\"wpforms_email_summaries_cron\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:30:\"wpforms_email_summaries_weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1660734666;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;}}}s:7:\"version\";i:2;}','yes'),(112,'update_day','3','yes'),(113,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(114,'widget_calendar','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:1:{s:5:\"title\";s:8:\"Calendar\";}}','yes'),(115,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(116,'widget_media_image','a:3:{s:12:\"_multiwidget\";i:1;i:3;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:300;s:6:\"height\";i:600;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:7;s:3:\"url\";s:70:\"http://voleursdechevaux.be/wp-content/uploads/2020/06/vertical-img.png\";s:5:\"title\";s:0:\"\";}i:4;a:15:{s:4:\"size\";s:4:\"full\";s:5:\"width\";i:1000;s:6:\"height\";i:667;s:7:\"caption\";s:0:\"\";s:3:\"alt\";s:0:\"\";s:9:\"link_type\";s:6:\"custom\";s:8:\"link_url\";s:0:\"\";s:13:\"image_classes\";s:0:\"\";s:12:\"link_classes\";s:0:\"\";s:8:\"link_rel\";s:0:\"\";s:17:\"link_target_blank\";b:0;s:11:\"image_title\";s:0:\"\";s:13:\"attachment_id\";i:11;s:3:\"url\";s:79:\"http://voleursdechevaux.be/wp-content/uploads/2020/06/GettyImages-804814600.jpg\";s:5:\"title\";s:9:\"Show This\";}}','yes'),(117,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(118,'widget_media_video','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:11:{s:7:\"preload\";s:8:\"metadata\";s:4:\"loop\";b:0;s:7:\"content\";s:0:\"\";s:3:\"mp4\";s:0:\"\";s:3:\"m4v\";s:0:\"\";s:4:\"webm\";s:0:\"\";s:3:\"ogv\";s:0:\"\";s:3:\"flv\";s:0:\"\";s:13:\"attachment_id\";i:0;s:3:\"url\";s:43:\"https://www.youtube.com/watch?v=IQwqVe-BCek\";s:5:\"title\";s:14:\"Featured Image\";}}','yes'),(119,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(120,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(122,'nonce_key','pTEo9p{,K7-0|?]BV9k X%XRgn?f3qsZ}X=<bIcH2Ro_-E8bBp e2nfTuDTw5|Mq','no'),(123,'nonce_salt','=g>~,L^^>prXR3x}z|aJOn]mqTQ`2EM$/vmvRp0SJILma9q>0cz+S|HayoHh%SKk','no'),(124,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(132,'current_theme','Blog Belt','yes'),(135,'theme_mods_twentyeleven','a:3:{s:18:\"custom_css_post_id\";i:-1;s:18:\"nav_menu_locations\";a:0:{}s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1591249577;s:4:\"data\";a:4:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:4:{i:0;s:8:\"search-2\";i:1;s:12:\"categories-2\";i:2;s:14:\"recent-posts-2\";i:3;s:11:\"tag_cloud-2\";}s:9:\"sidebar-2\";a:0:{}s:9:\"sidebar-3\";a:0:{}}}}','yes'),(137,'crawl-delay-value','7','yes'),(154,'can_compress_scripts','0','no'),(165,'category_children','a:0:{}','yes'),(176,'recently_activated','a:0:{}','yes'),(177,'widget_recent-posts-widget-with-thumbnails','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:36:{s:5:\"title\";s:11:\"Recent Post\";s:11:\"default_url\";s:99:\"http://voleursdechevaux.be/wp-content/plugins/recent-posts-widget-with-thumbnails/default_thumb.gif\";s:16:\"thumb_dimensions\";s:6:\"custom\";s:12:\"category_ids\";a:1:{i:0;i:0;}s:14:\"excerpt_length\";i:55;s:12:\"number_posts\";i:5;s:17:\"post_title_length\";i:1000;s:12:\"thumb_height\";i:75;s:11:\"thumb_width\";i:75;s:17:\"hide_current_post\";b:0;s:17:\"only_sticky_posts\";b:0;s:17:\"hide_sticky_posts\";b:0;s:10:\"hide_title\";b:0;s:17:\"keep_aspect_ratio\";b:0;s:11:\"keep_sticky\";b:0;s:12:\"only_1st_img\";b:0;s:12:\"random_order\";b:0;s:11:\"show_author\";b:0;s:15:\"show_categories\";b:0;s:20:\"show_comments_number\";b:0;s:9:\"show_date\";b:0;s:12:\"show_excerpt\";b:0;s:14:\"ignore_excerpt\";b:0;s:27:\"ignore_post_content_excerpt\";b:0;s:16:\"set_more_as_link\";b:0;s:11:\"try_1st_img\";b:0;s:11:\"use_default\";b:0;s:16:\"use_default_only\";b:0;s:15:\"open_new_window\";b:0;s:21:\"print_post_categories\";b:0;s:17:\"set_cats_as_links\";b:0;s:14:\"use_inline_css\";b:0;s:10:\"use_no_css\";b:0;s:10:\"show_thumb\";b:1;s:12:\"excerpt_more\";s:6:\" […]\";s:14:\"category_label\";s:2:\"In\";}}','yes'),(178,'mk_te_settings_options','a:5:{s:7:\"e_d_t_e\";s:3:\"yes\";s:17:\"code_editor_theme\";s:6:\"cobalt\";s:9:\"e_w_d_t_e\";s:3:\"yes\";s:7:\"e_d_p_e\";s:3:\"yes\";s:9:\"e_w_d_p_e\";s:3:\"yes\";}','yes'),(179,'ssb_networks','a:1:{s:14:\"icon_selection\";s:37:\"pinterest,whatsapp,reddit,viber,email\";}','yes'),(180,'ssb_themes','a:1:{s:10:\"icon_style\";s:12:\"simple-round\";}','yes'),(181,'ssb_positions','a:1:{s:8:\"position\";a:2:{s:7:\"sidebar\";s:7:\"sidebar\";s:6:\"inline\";s:6:\"inline\";}}','yes'),(182,'ssb_inline','a:14:{s:8:\"location\";s:5:\"below\";s:14:\"icon_alignment\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:16:\"show_on_category\";s:1:\"0\";s:15:\"show_on_archive\";s:1:\"0\";s:11:\"show_on_tag\";s:1:\"0\";s:14:\"show_on_search\";s:1:\"0\";s:11:\"share_title\";s:0:\"\";s:5:\"posts\";a:2:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";}}','yes'),(183,'ssb_advanced','a:1:{s:11:\"ssb_og_tags\";s:1:\"1\";}','yes'),(184,'ssb_pr_version','3.1.1','yes'),(185,'widget_ssb_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(186,'ssb_sidebar','a:8:{s:11:\"orientation\";s:4:\"left\";s:9:\"animation\";s:12:\"no-animation\";s:12:\"share_counts\";s:1:\"0\";s:11:\"total_share\";s:1:\"0\";s:10:\"icon_space\";s:1:\"0\";s:16:\"icon_space_value\";s:0:\"\";s:11:\"hide_mobile\";s:1:\"0\";s:5:\"posts\";a:2:{s:4:\"home\";s:4:\"home\";s:4:\"post\";s:4:\"post\";}}','yes'),(187,'ssb_media','','yes'),(188,'ssb_popup','','yes'),(189,'ssb_flyin','','yes'),(190,'ssb_active_time','1591247871','no'),(202,'action_scheduler_hybrid_store_demarkation','14','yes'),(203,'schema-ActionScheduler_StoreSchema','3.0.1591248134','yes'),(204,'schema-ActionScheduler_LoggerSchema','2.0.1591248134','yes'),(205,'wpforms_version','1.6.0.2','yes'),(206,'wpforms_activated','a:1:{s:4:\"lite\";i:1591248134;}','yes'),(209,'action_scheduler_lock_async-request-runner','1639587794','yes'),(210,'wpforms_version_lite','1.6.0.2','yes'),(211,'widget_wpforms-widget','a:2:{s:12:\"_multiwidget\";i:1;i:3;a:4:{s:5:\"title\";s:10:\"Newsletter\";s:7:\"form_id\";i:15;s:10:\"show_title\";b:0;s:9:\"show_desc\";b:0;}}','yes'),(214,'wpforms_review','a:2:{s:4:\"time\";i:1591248137;s:9:\"dismissed\";b:0;}','yes'),(218,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(225,'theme_mods_blog-belt','a:5:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:8:\"top-menu\";i:0;s:6:\"menu-1\";i:6;s:11:\"social-menu\";i:7;}s:18:\"custom_css_post_id\";i:36;s:11:\"custom_logo\";i:30;s:16:\"header_textcolor\";s:5:\"blank\";}','yes'),(226,'theme_switched','','yes'),(227,'widget_ocius-featured-post','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(228,'widget_ocius-author','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(229,'widget_ocius-social-icons','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(236,'theme_editor_email_verified_1','yes','yes'),(1215,'recovery_keys','a:0:{}','yes'),(1226,'action_scheduler_migration_status','complete','yes'),(1243,'ai1wm_secret_key','4weGorJ8qU78','yes'),(1244,'ai1wm_backups_labels','a:0:{}','yes'),(1245,'ai1wm_sites_links','a:0:{}','yes'),(1246,'swift_performance_plugin_organizer','a:0:{}','yes'),(1247,'jetpack_active_modules','a:0:{}','yes'),(1248,'widget_block','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(1249,'_transient_doing_cron','1660734667.0906829833984375000000','yes'),(1251,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:4:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:7:\"upgrade\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";}i:1;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.1.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-6.1.1.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.1.1-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.1.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:5:\"6.1.1\";s:7:\"version\";s:5:\"6.1.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:2;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:6:\"locale\";s:5:\"en_US\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:57:\"https://downloads.wordpress.org/release/wordpress-6.1.zip\";s:10:\"no_content\";s:68:\"https://downloads.wordpress.org/release/wordpress-6.1-no-content.zip\";s:11:\"new_bundled\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.1-new-bundled.zip\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"6.1\";s:7:\"version\";s:3:\"6.1\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:0:\"\";s:9:\"new_files\";s:1:\"1\";}i:3;O:8:\"stdClass\":11:{s:8:\"response\";s:10:\"autoupdate\";s:8:\"download\";s:59:\"https://downloads.wordpress.org/release/wordpress-6.0.3.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-6.0.3.zip\";s:10:\"no_content\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-no-content.zip\";s:11:\"new_bundled\";s:71:\"https://downloads.wordpress.org/release/wordpress-6.0.3-new-bundled.zip\";s:7:\"partial\";s:69:\"https://downloads.wordpress.org/release/wordpress-6.0.3-partial-0.zip\";s:8:\"rollback\";s:70:\"https://downloads.wordpress.org/release/wordpress-6.0.3-rollback-0.zip\";}s:7:\"current\";s:5:\"6.0.3\";s:7:\"version\";s:5:\"6.0.3\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"6.1\";s:15:\"partial_version\";s:3:\"6.0\";s:9:\"new_files\";s:0:\"\";}}s:12:\"last_checked\";i:1676580685;s:15:\"version_checked\";s:3:\"6.0\";s:12:\"translations\";a:0:{}}','no'),(1255,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1676580687;s:7:\"checked\";a:8:{s:9:\"blog-belt\";s:5:\"1.0.1\";s:5:\"ocius\";s:5:\"1.0.4\";s:12:\"twentyeleven\";s:3:\"3.4\";s:14:\"twentynineteen\";s:3:\"1.5\";s:15:\"twentyseventeen\";s:3:\"2.3\";s:12:\"twentytwenty\";s:3:\"1.2\";s:15:\"twentytwentyone\";s:3:\"1.6\";s:15:\"twentytwentytwo\";s:3:\"1.2\";}s:8:\"response\";a:7:{s:5:\"ocius\";a:6:{s:5:\"theme\";s:5:\"ocius\";s:11:\"new_version\";s:5:\"1.0.6\";s:3:\"url\";s:35:\"https://wordpress.org/themes/ocius/\";s:7:\"package\";s:53:\"https://downloads.wordpress.org/theme/ocius.1.0.6.zip\";s:8:\"requires\";s:3:\"4.5\";s:12:\"requires_php\";s:3:\"5.2\";}s:12:\"twentyeleven\";a:6:{s:5:\"theme\";s:12:\"twentyeleven\";s:11:\"new_version\";s:3:\"4.2\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentyeleven/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentyeleven.4.2.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";s:5:\"5.2.4\";}s:14:\"twentynineteen\";a:6:{s:5:\"theme\";s:14:\"twentynineteen\";s:11:\"new_version\";s:3:\"2.4\";s:3:\"url\";s:44:\"https://wordpress.org/themes/twentynineteen/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/theme/twentynineteen.2.4.zip\";s:8:\"requires\";s:5:\"4.9.6\";s:12:\"requires_php\";s:5:\"5.2.4\";}s:15:\"twentyseventeen\";a:6:{s:5:\"theme\";s:15:\"twentyseventeen\";s:11:\"new_version\";s:3:\"3.1\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentyseventeen/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentyseventeen.3.1.zip\";s:8:\"requires\";s:3:\"4.7\";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:\"2.1\";s:3:\"url\";s:42:\"https://wordpress.org/themes/twentytwenty/\";s:7:\"package\";s:58:\"https://downloads.wordpress.org/theme/twentytwenty.2.1.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.7\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentyone/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentyone.1.7.zip\";s:8:\"requires\";s:3:\"5.3\";s:12:\"requires_php\";s:3:\"5.6\";}s:15:\"twentytwentytwo\";a:6:{s:5:\"theme\";s:15:\"twentytwentytwo\";s:11:\"new_version\";s:3:\"1.3\";s:3:\"url\";s:45:\"https://wordpress.org/themes/twentytwentytwo/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/theme/twentytwentytwo.1.3.zip\";s:8:\"requires\";s:3:\"5.9\";s:12:\"requires_php\";s:3:\"5.6\";}}s:9:\"no_update\";a:1:{s:9:\"blog-belt\";a:6:{s:5:\"theme\";s:9:\"blog-belt\";s:11:\"new_version\";s:5:\"1.0.1\";s:3:\"url\";s:39:\"https://wordpress.org/themes/blog-belt/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/theme/blog-belt.1.0.1.zip\";s:8:\"requires\";b:0;s:12:\"requires_php\";b:0;}}s:12:\"translations\";a:0:{}}','no'),(1256,'cache_enabler','a:19:{s:7:\"version\";s:5:\"1.8.7\";s:20:\"use_trailing_slashes\";i:1;s:19:\"permalink_structure\";s:18:\"has_trailing_slash\";s:13:\"cache_expires\";i:0;s:17:\"cache_expiry_time\";i:0;s:30:\"clear_site_cache_on_saved_post\";i:0;s:33:\"clear_site_cache_on_saved_comment\";i:0;s:30:\"clear_site_cache_on_saved_term\";i:0;s:30:\"clear_site_cache_on_saved_user\";i:0;s:34:\"clear_site_cache_on_changed_plugin\";i:0;s:26:\"convert_image_urls_to_webp\";i:0;s:12:\"mobile_cache\";i:0;s:14:\"compress_cache\";i:0;s:11:\"minify_html\";i:0;s:20:\"minify_inline_css_js\";i:0;s:17:\"excluded_post_ids\";s:0:\"\";s:19:\"excluded_page_paths\";s:0:\"\";s:22:\"excluded_query_strings\";s:0:\"\";s:16:\"excluded_cookies\";s:0:\"\";}','yes'),(1258,'_site_transient_timeout_theme_roots','1676582485','no'),(1259,'_site_transient_theme_roots','a:8:{s:9:\"blog-belt\";s:7:\"/themes\";s:5:\"ocius\";s:7:\"/themes\";s:12:\"twentyeleven\";s:7:\"/themes\";s:14:\"twentynineteen\";s:7:\"/themes\";s:15:\"twentyseventeen\";s:7:\"/themes\";s:12:\"twentytwenty\";s:7:\"/themes\";s:15:\"twentytwentyone\";s:7:\"/themes\";s:15:\"twentytwentytwo\";s:7:\"/themes\";}','no'),(1260,'wpil_2_license_status','','yes'),(1261,'wpil_2_license_key','','yes'),(1262,'wpil_2_license_data','','yes'),(1263,'wpil_2_ignore_numbers','1','yes'),(1264,'wpil_2_post_types','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(1265,'wpil_2_links_open_new_tab','0','yes'),(1266,'wpil_2_debug_mode','0','yes'),(1267,'wpil_option_update_reporting_data_on_save','0','yes'),(1268,'wpil_2_ignore_words','-\r\n-\r\na\r\nabout\r\nabove\r\nactually\r\nadd\r\nafter\r\nagain\r\nagainst\r\nago\r\nall\r\nam\r\nan\r\nand\r\nanother\r\nanswer\r\nany\r\nare\r\naren\'t\r\nas\r\nat\r\nbase\r\nbe\r\nbecause\r\nbeen\r\nbefore\r\nbeing\r\nbelow\r\nbest\r\nbetter\r\nbetween\r\nboth\r\nbut\r\nby\r\ncan\r\ncan\'t\r\ncannot\r\ncons\r\ncould\r\ncouldn\'t\r\ndid\r\ndidn\'t\r\ndifference\r\ndifferent\r\ndo\r\ndoes\r\ndoesn\'t\r\ndoing\r\ndon\'t\r\ndone\r\ndown\r\nduring\r\neach\r\neasier\r\neasy\r\neight\r\neven\r\nfar\r\nfew\r\nfind\r\nfirst\r\nfive\r\nfor\r\nfour\r\nfree\r\nfrom\r\nfurther\r\ngeneral\r\nget\r\ngett\r\ngetting\r\ngo\r\ngood\r\ngot\r\ngreat\r\nhad\r\nhadn\'t\r\nhas\r\nhasn\'t\r\nhave\r\nhaven\'t\r\nhaver\r\nhaving\r\nhe\r\nhe\'d\r\nhe\'ll\r\nhe\'s\r\nhelp\r\nher\r\nhere\r\nhere\'s\r\nhers\r\nherself\r\nhigh\r\nhim\r\nhimself\r\nhis\r\nhow\r\nhow\'s\r\ni\r\ni\'d\r\ni\'ll\r\ni\'m\r\ni\'ve\r\nif\r\nin\r\ninto\r\nis\r\nisn\'t\r\nit\r\nit\'s\r\nits\r\nitself\r\njust\r\nless\r\nlet\'s\r\nlike\r\nlong\r\nlook\r\nlove\r\nmake\r\nmany\r\nmatt\r\nmatter\r\nmay\r\nme\r\nmore\r\nmost\r\nmuch\r\nmustn\'t\r\nmy\r\nmyself\r\nnever\r\nnew\r\nnine\r\nno\r\nnor\r\nnot\r\nnow\r\nof\r\noff\r\non\r\nonce\r\none\r\nonly\r\nor\r\nother\r\nought\r\nour\r\nours\r\nourselves\r\nout\r\nover\r\noverall\r\nown\r\nper\r\npros\r\nquestion\r\nreview\r\nright\r\nsame\r\nseven\r\nshan\'t\r\nshe\r\nshe\'d\r\nshe\'ll\r\nshe\'s\r\nshock\r\nshocking\r\nshould\r\nshouldn\'t\r\nshow\r\nsimple\r\nsix\r\nso\r\nsome\r\nstart\r\nstill\r\nsuch\r\ntake\r\nten\r\nthan\r\nthat\r\nthat\'s\r\nthe\r\ntheir\r\ntheirs\r\nthem\r\nthemselves\r\nthen\r\nthere\r\nthere\'s\r\nthese\r\nthey\r\nthey\'d\r\nthey\'ll\r\nthey\'re\r\nthey\'ve\r\nthis\r\nthose\r\nthree\r\nthrough\r\nto\r\ntoo\r\ntool\r\ntwo\r\nunder\r\nuntil\r\nup\r\nuse\r\nusing\r\nvery\r\nwant\r\nwas\r\nwasn\'t\r\nwe\r\nwe\'d\r\nwe\'ll\r\nwe\'re\r\nwe\'ve\r\nwere\r\nweren\'t\r\nwhat\r\nwhat\'s\r\nwhen\r\nwhen\'s\r\nwhere\r\nwhere\'s\r\nwhich\r\nwhile\r\nwho\r\nwho\'s\r\nwhom\r\nwhy\r\nwhy\'s\r\nwill\r\nwith\r\nwithin\r\nwithout\r\nwon\'t\r\nwould\r\nwouldn\'t\r\nyou\r\nyou\'d\r\nyou\'ll\r\nyou\'re\r\nyou\'ve\r\nyour\r\nyours\r\nyourself\r\nyourselves\r\nzero\'\r\n-','yes'),(1269,'wpil_has_run_initial_scan','1','yes'),(1270,'wpil_site_db_version','1.22','yes'),(1271,'wpil_link_table_is_created','1','yes'),(1272,'wpil_fresh_install','','yes'),(1273,'wpil_install_date','2023-02-16 20:51:26','yes'),(1276,'fs_active_plugins','O:8:\"stdClass\":3:{s:7:\"plugins\";a:1:{s:39:\"wp-sheet-editor-premium/vendor/freemius\";O:8:\"stdClass\":4:{s:7:\"version\";s:5:\"2.5.3\";s:4:\"type\";s:6:\"plugin\";s:9:\"timestamp\";i:1676580687;s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:7:\"abspath\";s:37:\"/opt/aphex/sites/voleursdechevaux.be/\";s:6:\"newest\";O:8:\"stdClass\":5:{s:11:\"plugin_path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:8:\"sdk_path\";s:39:\"wp-sheet-editor-premium/vendor/freemius\";s:7:\"version\";s:5:\"2.5.3\";s:13:\"in_activation\";b:0;s:9:\"timestamp\";i:1676580687;}}','yes'),(1277,'fs_debug_mode','','yes'),(1278,'fs_accounts','a:4:{s:21:\"id_slug_type_path_map\";a:1:{i:1010;a:3:{s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:4:\"type\";s:6:\"plugin\";s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}}s:11:\"plugin_data\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";a:11:{s:16:\"plugin_main_file\";O:8:\"stdClass\":1:{s:4:\"path\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";}s:20:\"is_network_activated\";b:0;s:17:\"install_timestamp\";i:1676580687;s:16:\"sdk_last_version\";N;s:11:\"sdk_version\";s:5:\"2.5.3\";s:16:\"sdk_upgrade_mode\";b:1;s:18:\"sdk_downgrade_mode\";b:0;s:19:\"plugin_last_version\";N;s:14:\"plugin_version\";s:13:\"2.25.2-beta.1\";s:19:\"plugin_upgrade_mode\";b:1;s:21:\"plugin_downgrade_mode\";b:0;}}s:13:\"file_slug_map\";a:1:{s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";}s:7:\"plugins\";a:1:{s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";O:9:\"FS_Plugin\":23:{s:16:\"parent_plugin_id\";N;s:5:\"title\";s:28:\"WP Sheet Editor - Post Types\";s:4:\"slug\";s:59:\"wp-sheet-editor-bulk-spreadsheet-editor-for-posts-and-pages\";s:12:\"premium_slug\";s:23:\"wp-sheet-editor-premium\";s:4:\"type\";s:6:\"plugin\";s:20:\"affiliate_moderation\";b:0;s:19:\"is_wp_org_compliant\";b:1;s:22:\"premium_releases_count\";N;s:4:\"file\";s:43:\"wp-sheet-editor-premium/wp-sheet-editor.php\";s:7:\"version\";s:13:\"2.25.2-beta.1\";s:11:\"auto_update\";N;s:4:\"info\";N;s:10:\"is_premium\";b:1;s:14:\"premium_suffix\";s:9:\"(Premium)\";s:7:\"is_live\";b:1;s:9:\"bundle_id\";N;s:17:\"bundle_public_key\";N;s:10:\"public_key\";s:32:\"pk_ec1c7da603c0772f1bfe276efb715\";s:10:\"secret_key\";N;s:2:\"id\";s:4:\"1010\";s:7:\"updated\";N;s:7:\"created\";N;s:22:\"\0FS_Entity\0_is_updated\";b:1;}}}','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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_postmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`meta_id`),
KEY `post_id` (`post_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=142 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 (2,3,'_wp_page_template','default'),(3,5,'_wp_attached_file','2020/06/unnamed.jpg'),(4,5,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:340;s:4:\"file\";s:19:\"2020/06/unnamed.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"unnamed-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"unnamed-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:19:\"unnamed-512x288.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:19:\"unnamed-512x288.jpg\";s:5:\"width\";i:512;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:19:\"unnamed-452x300.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:300;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:56:\"42270807 - stressed man working at laptop in home office\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:17:\"stockbroker/123RF\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:56:\"42270807 - stressed man working at laptop in home office\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(5,6,'_wp_attached_file','2020/06/horizontal.jpg'),(6,6,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:728;s:6:\"height\";i:90;s:4:\"file\";s:22:\"2020/06/horizontal.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"horizontal-300x37.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:37;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"horizontal-150x90.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:90;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:21:\"horizontal-500x62.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:62;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:{}}}'),(7,7,'_wp_attached_file','2020/06/vertical-img.png'),(8,7,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:300;s:6:\"height\";i:600;s:4:\"file\";s:24:\"2020/06/vertical-img.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"vertical-img-150x300.png\";s:5:\"width\";i:150;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"vertical-img-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:24:\"vertical-img-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:24:\"vertical-img-300x288.png\";s:5:\"width\";i:300;s:6:\"height\";i:288;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:24:\"vertical-img-150x300.png\";s:5:\"width\";i:150;s:6:\"height\";i:300;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:{}}}'),(9,8,'_wp_attached_file','2020/06/future-payment-shock-scaled.jpg'),(10,8,'_wp_attachment_metadata','a:6:{s:5:\"width\";i:2560;s:6:\"height\";i:1701;s:4:\"file\";s:39:\"2020/06/future-payment-shock-scaled.jpg\";s:5:\"sizes\";a:9:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"future-payment-shock-300x199.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:199;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"future-payment-shock-1024x680.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:680;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"future-payment-shock-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"future-payment-shock-768x510.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:510;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"future-payment-shock-1536x1020.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:1020;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"2048x2048\";a:4:{s:4:\"file\";s:34:\"future-payment-shock-2048x1360.jpg\";s:5:\"width\";i:2048;s:6:\"height\";i:1360;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:33:\"future-payment-shock-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:33:\"future-payment-shock-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:32:\"future-payment-shock-452x300.jpg\";s:5:\"width\";i:452;s:6:\"height\";i:300;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:47:\"Stressed Woman Working At Laptop In Home Office\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:8:\"Bigstock\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:47:\"Stressed Woman Working At Laptop In Home Office\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:57:{i:0;s:3:\"30s\";i:1;s:7:\"anxiety\";i:2;s:5:\"bills\";i:3;s:5:\"bored\";i:4;s:8:\"computer\";i:5;s:4:\"copy\";i:6;s:4:\"debt\";i:7;s:6:\"defeat\";i:8;s:4:\"desk\";i:9;s:7:\"despair\";i:10;s:3:\"fed\";i:11;s:6:\"female\";i:12;s:7:\"finance\";i:13;s:8:\"finances\";i:14;s:11:\"frustration\";i:15;s:8:\"hispanic\";i:16;s:14:\"hispanic woman\";i:17;s:4:\"home\";i:18;s:11:\"home office\";i:19;s:10:\"horizontal\";i:20;s:7:\"indoors\";i:21;s:6:\"laptop\";i:22;s:5:\"messy\";i:23;s:10:\"messy desk\";i:24;s:6:\"office\";i:25;s:12:\"office space\";i:26;s:3:\"one\";i:27;s:9:\"paperwork\";i:28;s:6:\"people\";i:29;s:6:\"person\";i:30;s:6:\"pretty\";i:31;s:7:\"problem\";i:32;s:7:\"sitting\";i:33;s:5:\"space\";i:34;s:6:\"stress\";i:35;s:8:\"stressed\";i:36;s:12:\"stressed out\";i:37;s:14:\"stressed woman\";i:38;s:5:\"study\";i:39;s:8:\"thirties\";i:40;s:7:\"unhappy\";i:41;s:6:\"untidy\";i:42;s:2:\"up\";i:43;s:5:\"woman\";i:44;s:17:\"woman at computer\";i:45;s:14:\"woman computer\";i:46;s:12:\"woman laptop\";i:47;s:17:\"woman on computer\";i:48;s:15:\"woman on laptop\";i:49;s:5:\"women\";i:50;s:12:\"work at home\";i:51;s:14:\"work from home\";i:52;s:7:\"working\";i:53;s:17:\"working from home\";i:54;s:13:\"working woman\";i:55;s:7:\"worried\";i:56;s:13:\"worried woman\";}}s:14:\"original_image\";s:24:\"future-payment-shock.jpg\";}'),(11,9,'_edit_lock','1591247610:1'),(12,10,'_edit_lock','1591247612:1'),(13,11,'_wp_attached_file','2020/06/GettyImages-804814600.jpg'),(14,11,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1000;s:6:\"height\";i:667;s:4:\"file\";s:33:\"2020/06/GettyImages-804814600.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"GettyImages-804814600-300x200.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"GettyImages-804814600-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"GettyImages-804814600-768x512.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:14:\"post-thumbnail\";a:4:{s:4:\"file\";s:34:\"GettyImages-804814600-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"large-feature\";a:4:{s:4:\"file\";s:34:\"GettyImages-804814600-1000x288.jpg\";s:5:\"width\";i:1000;s:6:\"height\";i:288;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:13:\"small-feature\";a:4:{s:4:\"file\";s:33:\"GettyImages-804814600-450x300.jpg\";s:5:\"width\";i:450;s:6:\"height\";i:300;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:37:\"This content is subject to copyright.\";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:{}}}'),(17,10,'_thumbnail_id','5'),(20,9,'_thumbnail_id','8'),(21,16,'_edit_lock','1591248225:1'),(22,17,'_edit_lock','1591248262:1'),(23,18,'_edit_lock','1591248749:1'),(24,19,'_edit_lock','1591248587:1'),(25,24,'_menu_item_type','custom'),(26,24,'_menu_item_menu_item_parent','0'),(27,24,'_menu_item_object_id','24'),(28,24,'_menu_item_object','custom'),(29,24,'_menu_item_target',''),(30,24,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31,24,'_menu_item_xfn',''),(32,24,'_menu_item_url','http://voleursdechevaux.be/'),(34,25,'_menu_item_type','post_type'),(35,25,'_menu_item_menu_item_parent','0'),(36,25,'_menu_item_object_id','16'),(37,25,'_menu_item_object','page'),(38,25,'_menu_item_target',''),(39,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(40,25,'_menu_item_xfn',''),(41,25,'_menu_item_url',''),(43,26,'_menu_item_type','post_type'),(44,26,'_menu_item_menu_item_parent','0'),(45,26,'_menu_item_object_id','17'),(46,26,'_menu_item_object','page'),(47,26,'_menu_item_target',''),(48,26,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(49,26,'_menu_item_xfn',''),(50,26,'_menu_item_url',''),(52,27,'_menu_item_type','post_type'),(53,27,'_menu_item_menu_item_parent','0'),(54,27,'_menu_item_object_id','19'),(55,27,'_menu_item_object','page'),(56,27,'_menu_item_target',''),(57,27,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58,27,'_menu_item_xfn',''),(59,27,'_menu_item_url',''),(61,28,'_menu_item_type','post_type'),(62,28,'_menu_item_menu_item_parent','0'),(63,28,'_menu_item_object_id','18'),(64,28,'_menu_item_object','page'),(65,28,'_menu_item_target',''),(66,28,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(67,28,'_menu_item_xfn',''),(68,28,'_menu_item_url',''),(70,29,'_wp_attached_file','2020/06/logo.png'),(71,29,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:325;s:6:\"height\";i:260;s:4:\"file\";s:16:\"2020/06/logo.png\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"logo-300x240.png\";s:5:\"width\";i:300;s:6:\"height\";i:240;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"logo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"ocius-small-thumb\";a:4:{s:4:\"file\";s:16:\"logo-325x220.png\";s:5:\"width\";i:325;s:6:\"height\";i:220;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:{}}}'),(72,30,'_wp_attached_file','2020/06/cropped-logo.png'),(73,30,'_wp_attachment_context','custom-logo'),(74,30,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:325;s:6:\"height\";i:180;s:4:\"file\";s:24:\"2020/06/cropped-logo.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"cropped-logo-300x166.png\";s:5:\"width\";i:300;s:6:\"height\";i:166;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"cropped-logo-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:{}}}'),(75,31,'_wp_attached_file','2020/06/cropped-logo-1.png'),(76,31,'_wp_attachment_context','site-icon'),(77,31,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:512;s:6:\"height\";i:512;s:4:\"file\";s:26:\"2020/06/cropped-logo-1.png\";s:5:\"sizes\";a:8:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:18:\"ocius-carousel-img\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-512x450.png\";s:5:\"width\";i:512;s:6:\"height\";i:450;s:9:\"mime-type\";s:9:\"image/png\";}s:17:\"ocius-small-thumb\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-350x220.png\";s:5:\"width\";i:350;s:6:\"height\";i:220;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-270\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-270x270.png\";s:5:\"width\";i:270;s:6:\"height\";i:270;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-192\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-192x192.png\";s:5:\"width\";i:192;s:6:\"height\";i:192;s:9:\"mime-type\";s:9:\"image/png\";}s:13:\"site_icon-180\";a:4:{s:4:\"file\";s:26:\"cropped-logo-1-180x180.png\";s:5:\"width\";i:180;s:6:\"height\";i:180;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"site_icon-32\";a:4:{s:4:\"file\";s:24:\"cropped-logo-1-32x32.png\";s:5:\"width\";i:32;s:6:\"height\";i:32;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:{}}}'),(92,43,'_menu_item_type','custom'),(93,43,'_menu_item_menu_item_parent','0'),(94,43,'_menu_item_object_id','43'),(95,43,'_menu_item_object','custom'),(96,43,'_menu_item_target',''),(97,43,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(98,43,'_menu_item_xfn',''),(99,43,'_menu_item_url','https://www.facebook.com/'),(100,44,'_menu_item_type','custom'),(101,44,'_menu_item_menu_item_parent','0'),(102,44,'_menu_item_object_id','44'),(103,44,'_menu_item_object','custom'),(104,44,'_menu_item_target',''),(105,44,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(106,44,'_menu_item_xfn',''),(107,44,'_menu_item_url','https://twitter.com/'),(108,45,'_menu_item_type','custom'),(109,45,'_menu_item_menu_item_parent','0'),(110,45,'_menu_item_object_id','45'),(111,45,'_menu_item_object','custom'),(112,45,'_menu_item_target',''),(113,45,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(114,45,'_menu_item_xfn',''),(115,45,'_menu_item_url','https://www.linkedin.com/'),(116,46,'_menu_item_type','custom'),(117,46,'_menu_item_menu_item_parent','0'),(118,46,'_menu_item_object_id','46'),(119,46,'_menu_item_object','custom'),(120,46,'_menu_item_target',''),(121,46,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(122,46,'_menu_item_xfn',''),(123,46,'_menu_item_url','https://www.youtube.com/'),(132,14,'wpforms_entries_count','1444'),(133,15,'wpforms_entries_count','187'),(134,9,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(135,9,'ssb_total_counts','0'),(136,9,'ssb_cache_timestamp','450202'),(137,10,'ssb_old_counts','a:5:{s:7:\"twitter\";i:0;s:9:\"pinterest\";i:0;s:7:\"fbshare\";i:0;s:6:\"reddit\";i:0;s:6:\"tumblr\";i:0;}'),(138,10,'ssb_total_counts','0'),(139,10,'ssb_cache_timestamp','450202'),(140,31,'_oembed_450cd849662df72f485459ca37089668','{{unknown}}'),(141,30,'_oembed_6b2a0631caf320c8d4c14ba11b7984a3','{{unknown}}');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_posts` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_author` bigint 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_excerpt` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
`comment_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`ping_status` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
`post_password` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`post_name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`to_ping` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`pinged` text CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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 CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`post_parent` bigint unsigned NOT NULL DEFAULT '0',
`guid` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`menu_order` int NOT NULL DEFAULT '0',
`post_type` varchar(20) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
`post_mime_type` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`comment_count` bigint 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=51 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 (3,1,'2020-04-23 18:24:32','2020-04-23 18:24:32','<!-- wp:heading --><h2>Who we are</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Our website address is: http://voleursdechevaux.be.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What personal data we collect and why we collect it</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Comments</h3><!-- /wp:heading --><!-- wp:paragraph --><p>When visitors leave comments on the site we collect the data shown in the comments form, and also the visitor’s IP address and browser user agent string to help spam detection.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>An anonymized string created from your email address (also called a hash) may be provided to the Gravatar service to see if you are using it. The Gravatar service privacy policy is available here: https://automattic.com/privacy/. After approval of your comment, your profile picture is visible to the public in the context of your comment.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Media</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you upload images to the website, you should avoid uploading images with embedded location data (EXIF GPS) included. Visitors to the website can download and extract any location data from images on the website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Contact forms</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Cookies</h3><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment on our site you may opt-in to saving your name, email address and website in cookies. These are for your convenience so that you do not have to fill in your details again when you leave another comment. These cookies will last for one year.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you visit our login page, we will set a temporary cookie to determine if your browser accepts cookies. This cookie contains no personal data and is discarded when you close your browser.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>When you log in, we will also set up several cookies to save your login information and your screen display choices. Login cookies last for two days, and screen options cookies last for a year. If you select "Remember Me", your login will persist for two weeks. If you log out of your account, the login cookies will be removed.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>If you edit or publish an article, an additional cookie will be saved in your browser. This cookie includes no personal data and simply indicates the post ID of the article you just edited. It expires after 1 day.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Embedded content from other websites</h3><!-- /wp:heading --><!-- wp:paragraph --><p>Articles on this site may include embedded content (e.g. videos, images, articles, etc.). Embedded content from other websites behaves in the exact same way as if the visitor has visited the other website.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>These websites may collect data about you, use cookies, embed additional third-party tracking, and monitor your interaction with that embedded content, including tracking your interaction with the embedded content if you have an account and are logged in to that website.</p><!-- /wp:paragraph --><!-- wp:heading {\"level\":3} --><h3>Analytics</h3><!-- /wp:heading --><!-- wp:heading --><h2>Who we share your data with</h2><!-- /wp:heading --><!-- wp:heading --><h2>How long we retain your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you leave a comment, the comment and its metadata are retained indefinitely. This is so we can recognize and approve any follow-up comments automatically instead of holding them in a moderation queue.</p><!-- /wp:paragraph --><!-- wp:paragraph --><p>For users that register on our website (if any), we also store the personal information they provide in their user profile. All users can see, edit, or delete their personal information at any time (except they cannot change their username). Website administrators can also see and edit that information.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>What rights you have over your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>If you have an account on this site, or have left comments, you can request to receive an exported file of the personal data we hold about you, including any data you have provided to us. You can also request that we erase any personal data we hold about you. This does not include any data we are obliged to keep for administrative, legal, or security purposes.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Where we send your data</h2><!-- /wp:heading --><!-- wp:paragraph --><p>Visitor comments may be checked through an automated spam detection service.</p><!-- /wp:paragraph --><!-- wp:heading --><h2>Your contact information</h2><!-- /wp:heading --><!-- wp:heading --><h2>Additional information</h2><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>How we protect your data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What data breach procedures we have in place</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What third parties we receive data from</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>What automated decision making and/or profiling we do with user data</h3><!-- /wp:heading --><!-- wp:heading {\"level\":3} --><h3>Industry regulatory disclosure requirements</h3><!-- /wp:heading -->','Privacy Policy','','draft','closed','open','','privacy-policy','','','2020-04-23 18:24:32','2020-04-23 18:24:32','',0,'http://voleursdechevaux.be/?page_id=3',0,'page','',0),(5,1,'2020-06-04 05:09:25','2020-06-04 05:09:25','','','','inherit','closed','closed','','42270807-stressed-man-working-at-laptop-in-home-office','','','2020-06-04 05:12:39','2020-06-04 05:12:39','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/unnamed.jpg',0,'attachment','image/jpeg',0),(6,1,'2020-06-04 05:09:26','2020-06-04 05:09:26','','horizontal','','inherit','closed','closed','','horizontal','','','2020-06-04 05:09:26','2020-06-04 05:09:26','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/horizontal.jpg',0,'attachment','image/jpeg',0),(7,1,'2020-06-04 05:09:27','2020-06-04 05:09:27','','vertical img','','inherit','closed','closed','','vertical-img','','','2020-06-04 05:09:27','2020-06-04 05:09:27','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/vertical-img.png',0,'attachment','image/png',0),(8,1,'2020-06-04 05:09:46','2020-06-04 05:09:46','','','','inherit','closed','closed','','stressed-woman-working-at-laptop-in-home-office','','','2020-06-04 05:15:44','2020-06-04 05:15:44','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/future-payment-shock.jpg',0,'attachment','image/jpeg',0),(9,1,'2020-06-04 05:15:47','2020-06-04 05:15:47','<!-- wp:paragraph -->\n<p>Stress is getting otherwise called a presentation dampener for people. In any case, there is still small comprehension about how all invading the pressure issue is in the working environment, its effect on authoritative exhibition and what is truly causing the worry in any case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The unwanted certainty is that pressure is endemic in our hierarchical life. Any place we see separation among workers, a significant level of missteps, interminable degrees of client assistance, low profitability, broad waste, poor dynamic at the executives level and unsuitable initiative, you can be certain that pressure is the fundamental causal factor. At last focused on conduct and focused on believing is the central motivation behind why such a significant number of associations don\'t work close to as well as possible and why dreadfully a significant number of them come up short.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What we have to consider in the board is that individual characteristics, for example, energy, undertaking, invigoration, interest, bunch reliability, imaginative critical thinking, cooperation, calm concentration and natural reasoning are intrinsic to everybody we utilize. Be that as it may, just when they are in their common \"cerebrum state\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These precious human qualities involve fundamental endurance systems that are innate to us all. In any case, the essential truth is that these brilliant characteristics are commonly just accessible to us when we are in a low condition of pressure. This implies the more worry there is in the workplace the less these significant characteristics are accessible to profit the association.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fundamentally, the potential and want for exceptionally inventive and beneficial work is now inborn in pretty much every representative on your compensation roll. As such all administrators truly need to never really improve efficiency, is to discharge the hierarchical brakes that keep individuals away from really contributing these natural characteristics to the universally useful. Evacuate the pressure and you set up a focussed, lively and venturesome work culture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Basically, we don\'t have to inspire individuals, we simply need to quit demotivating them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress anyplace in a framework will affect the entire framework</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress is additionally significant from a frameworks point of view. Associations are living frameworks whose center segments are the people inside it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be that as it may, a framework isn\'t only an assortment of divided occasions or autonomous segments. These individuals\' connections, every day exchanges, singular desires and intentions structure the vital drive, dynamic cooperation and interconnectivity that make the framework work. The framework capacities all in all, with the segment parts quietly associated on one another for its general adequacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A framework\'s intricate and dynamic progression of consistent intuitiveness implies any new thought, activity, response, change in capacity or change in structure that is brought into one piece of the framework will have a type of effect somewhere else in the framework. Changes swell through and over a framework simply like waves in a lake. These waves sway zones that may not in any case be evidently associated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Much the same as some other change factor referenced above, in the event that somebody some place in the association encounters a pressure reaction, at that point it will incite a wave influence over the entire framework.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The pressure reaction doesn\'t simply unfavorably impact a person\'s dynamic, thoughts, emotions, conduct and gainful movement; thanks to an association\'s dynamic intelligence and relationship, this impact at that point saturates the framework all in all and effects generally speaking execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is the reason feelings of anxiety in any association can make the entire framework fail to meet expectations. Much the same as coarseness in the machine, if the pressure is awful enough it can cause the entire framework to seize up and flop by and large. It is this knowledge that gives us a significant piece of information with respect to how to improve authoritative execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognize and evacuate the stressors that sway singular reasoning and execution, and you expel significant imperatives and deterrents to the exhibition of the framework all in all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For what reason would we be able to be so certain about this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cerebrum look into is changing the potential for hierarchical execution</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Incredibly, present day science has shown us more the human cerebrum over the most recent forty years than in all the past 300 years joined. Vitally from a business perspective, investigation into the mind (neuroscience and neurobiology), frameworks hypothesis, etc is rendering numerous conventional thoughts regarding pressure and brain research outdated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This new understanding is thusly constraining us to change many esteemed convictions about administration, the executives control, authoritative plan, and inspiration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Excitingly, this information furnishes us with a much more clear view concerning why such a significant number of issues emerge in associations. This developing perspective on the major reasons why such a significant number of things presently turn out badly is opening up a practically boundless potential for upgrades to hierarchical execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Evacuating pressure factors improves singular execution by 20% - half</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is significant news for pioneers and administrators all over. Evacuate certain key stressors that routinely pervade our associations and you improve singular execution by a factor of 20% - half and possibly much more than that.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In actuality, new information about the effect of weight on the cerebrum and the inescapable impact of a person\'s weight all in all framework gives us a plain decision. Contingent upon the kind of initiative you receive you can decide to pressure your kin into dull, conventionalist, consistence. Or on the other hand you can decide to engage more elevated levels of excitement, duty, innovativeness and keen activity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hierarchical pressure makes an ungracious workplace</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For the most part supervisors still enormously belittle the genuine expense of pressure. The got insight is that the expenses are restricted to non-attendance, disorder and the danger of remuneration claims, in spite of the fact that these components are awful enough. Yet, work done in many associations with stress reviews show that the genuine expenses go path past this limited perspective on things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In particular, numbness about pressure drives us accidentally to make structures, strategies, procedures and controls that make an unwelcoming working condition for ourselves, our representatives and different partners.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the normal association, stress compels or subverts savvy or gainful action at each degree of an association and over each capacity. For example:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At vital level pressure adds to misguided thinking, uncouth or ill-advised dynamic and exploitative conduct.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At the administration level pressure drives surged and lacking operational arranging, destructive picture the board, inadequate examination, defective critical thinking, broken dynamic, feeble relationship building and de-persuading authority.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At operational level pressure incites inauthentic working connections, individual clashes, mishaps, exorbitant slip-ups and revamp, imperfect critical thinking, dormancy, lack of care toward associates\' and clients\' needs, low innovativeness, squander, protection from change and unintelligible cooperation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hierarchical pressure is of vital significance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that, as a pioneer, you are adding to making a distressing workplace, at that point you are destroying the odds of your gathering being gainful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The significant ramifications of this is the effect of authoritative weight on execution has happened to key significance. The comprehension of stress is accordingly an inborn piece of any supervisor or pioneer\'s toolbox. Stress the executives is not, at this point a fringe matter best left to the HR office or some redistributed worker help program (EAP).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A key range of abilities for any pioneer from CEO down to manager level is to know the accompanying:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The effect of weight on their own dynamic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The effect the pressure reaction has on work conduct</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• What expenses emerge in the framework when stress kicks in and how best to recognize and quantify these expenses</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• Why and how the individual pressure reaction cripples mental and enthusiastic working at work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• How a comprehension of enthusiastic needs abstains from setting off a pressure reaction</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The inborn individual assets that, are accessible any place people appreciate a low-focused on constructive cerebrum state.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The great news is that you don\'t need to be a superhuman, star, or have moxy, driving desire, or even a ground-breaking character to be a compelling pioneer. A long way from it, truly these attributes may really impede drawing out the maximum capacity of your gathering as they can hinder your capacity to empower powerful and unconstrained gathering joint effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top down order and control triggers a pressure reaction</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Everything science currently informs us concerning the human physiology, brain science, stress and correspondence shows that top down order and control the executives is regularly counter profitable. The explanation is that top down order and control is consistently obligated to trigger a crippling pressure reaction. Then again, empowering coordinated effort or collaboration is a progressively normal approach to run an association, as it abstains from setting off this pressure reaction thus empowers the ideal working of the human mind and enthusiastic resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The essential reasons that top down order and control actuate pressure are both the dread factor and the institutional negligence appeared for others\' enthusiastic and mental needs. When the pressure reaction is activated it consequently lessens numerous representatives\' capacity and even want to work viably in an entire wide range of ways.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then again, a collective style of working assists individuals with meeting a scope of their basic organic needs. Addressing these necessities evacuates various distinctive pressure triggers and this empowers the releasing of the inactive abilities and inventive intensity of everybody included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top down order and control isn\'t the main source of worry obviously. Pioneers should be aw</p>\n<!-- /wp:paragraph -->','Stress, The Nemesis of Organisational Performance','','publish','closed','closed','','stress-the-nemesis-of-organisational-performance','','','2020-06-04 05:15:47','2020-06-04 05:15:47','',0,'http://voleursdechevaux.be/?p=9',0,'post','',0),(10,1,'2020-06-04 05:13:24','2020-06-04 05:13:24','<!-- wp:paragraph -->\n<p>Let\'s be honest; regardless of whether you\'re a bustling homemaker or a high flying official, the present well known mentality is to be as occupied as conceivable with consistently and minute packed with a work. However the everyday weight can incorporate with constant pressure, which whenever disregarded, can be unfavorable to our psyche, body, and soul.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Body</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While a large portion of us have worry in some structure, an unfortunate reaction to push happens when the requests of the stressor surpass a person\'s adapting capacity. While stress is really a mental perspective, as it impressively influences our physiological state. \"In an old style unpleasant circumstance, certain pressure hormones, for example, cortisol are discharged which builds the heartbeat, perspiring, anxiety, and the inclination to pee,\" with the underlying marker normally showing as a failure to rest. Over the long haul this prompts issues, for example, heartburn, causticity, ulcers, low-back torments, hypertension, coronary episode, stroke, elevated cholesterol, misery, cerebral pains, and weariness, to give some examples. Long haul pressure likewise influences our resistance and decreases our illness battling limit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In Teens</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While the young years can be profoundly distressing, some normal stressors include: worry from school, social tension, and burdensome emotions - for instance, not having a place, self-hurt and other useless adapting systems. Another enormous one, especially appropriate to today, is online life unseemliness. While teenagers and grown-ups cover by they way they adapt to pressure, the main contrast is that grown-ups express pressure verbally while youngsters will in general disengage themselves during times of high pressure. \"This is on the grounds that young people can\'t appropriately deal with their worry because of an absence of sound adapting abilities,\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Negative Implications</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that the pressure isn\'t gotten and tended to in time, young people may use wild and damaging practices, substance misuse, and physical brutality as unfortunate adapting aptitudes. Young people\'s scholastic and extra-curricular advancement may likewise weaken if stress isn\'t taken care of fittingly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Taking a few to get back some composure on Teen Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keeping up viable correspondence with your teenager and embracing solid adapting aptitudes are the two best approaches to make do with stress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be accessible - make some time regardless of how bustling the calendar is - structure openings into day by day life. Investing energy with your high schooler gives them that you care despite the fact that they are driving you away.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be reasonable and adaptable in your desires however acclaim exertion something other than results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be tolerant and reliable during their formative stage - they are variable and attempting to understand their place on the planet - they can oppose reason and sense once in a while.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Try not to limit their emotions with expectations of them \"getting over it\". Their emotions are genuine and influencing them in manners that should be tended to.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be commonsense and useful in your methodology - they may require your astuteness and association - regardless of whether they state they don\'t.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can\'t and ought not shield them from all anxieties and dangers. You should set cutoff points just as results to what is adequate and unsuitable at home, school, and somewhere else.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>THE MIND</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress Reactions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the point when stress is over the top, it brings about one of four responses - tension, unresponsiveness and wretchedness, outrage and animosity and psychological hindrance. \"Stress can be brought about by awful mishaps, occasions which challenge our cutoff points, just as inner clashes,\". \"For instance, if your supervisor scrutinizes you unreasonably, you feel the pressure.\" You need to have the option to clarify why he/she isn\'t right yet in addition have a dread of upsetting your chief and this pressure or interior clash makes you ruminate and these contemplations can rapidly winding wild: My manager believes I\'m bumbling; I won\'t get the advancement I merit. This arrangement of ruminations brings about cataclysmic reasoning, which can prompt concern, uneasiness, feeling discouraged and a sleeping disorder.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top Ways to Alleviate Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Discussion about what is focusing on you to somebody who tunes in to you, comprehends the pressure condition and thinks about you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ruminations make a \"pressure-cooker impact\". They bob around making pressure. Discharging this through talking truly makes a difference.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Most connections in life are proportional. It\'s extremely imperative to build up great interpersonal organizations with the goal that individuals might be there for us in our hour of need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is imperative to evacuate the wellspring of the pressure, if conceivable, by taking control and being dynamic. For instance, instead of being a casualty of tormenting in the working environment, you may decide to either place in a grumbling or move post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Interruption is a helpful strategy to maintain a strategic distance from pressure. Responding to another call or another action is frequently useful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Present DAY</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electronic Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Advanced mobile phones, contraptions, and PCs all assist us with remaining overly associated yet at a significant expense. \"Cell phones add immensely to cutting edge worries in that the work environment and internet based life saturate our lives with the goal that we are rarely truly free,\". \"We are working or mingling 24-hours per day, checking our telephones last thing around evening time and before anything else when research shows that each time we get an email, we can take as long as 20 minutes on normal to re-center around kids, accomplices or different core interests.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Arranging</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most ideal approach to manage cell phones is to turn them off when at home; be that as it may, this is unrealistic for a few. \"The option is to have windows of when you check your messages, for instance 9 to 9:30pm, and to take care of it for the remainder of the time,\" and make certain to abstain from utilizing your cell phone one hour before you rest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Discovering Solutions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today the point is on augmenting the handiness within recent memory and pressing as much as possible from each moment of the day. So by what method can an individual discover time in the day to destress? We have to figure out how to handle the outer weights and even our own internal voices that reveal to us that to be fruitful, he says as these are old mentalities that we have learnt throughout the years that are not, at this point important. \"We should supplant these contemplations with new one\'s that help us in the genuine benefit of setting aside effort to de-stress the correct way,\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hold Your Stress with These Tips</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Practice Regular Exercise - Exercise impacts a synapse that works like an energizer on your cerebrum while diminishing muscle pressure.</li><li>Head Outside - Even five minutes in nature can help lessen pressure and lift your state of mind.</li><li>Concentrate on Your Breathing - Ideally you ought to be breathing essentially through your nose through a basic procedure called Buteyko breathing to assist you with reestablishing valuable breathing examples.</li><li>Take an interest in Activities - You Enjoy Engaging in a pastime encourages you have a good time and remove your brain from pressure.</li><li>Eat Healthy - Schedule time to eat without surging and make certain to expend new, solid, entire nourishments.</li><li>Remain Positive - Keep a rundown of all that you\'re thankful for and make a guarantee to stop any negative self-talk.</li><li>Remain Connected - Loneliness can be a significant wellspring of stress, so do some chipping in, get together with companions or take a class to meet others.</li><li>Enjoy a Reprieve or Meditate - Taking even 10 minutes to sit discreetly and shut out the turmoil around you can trigger your unwinding reaction.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The Positive Side of Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is pressure is something that should be diminished, stifled or kept away from? Or then again would we be able to acknowledge it, use it, and grasp it? Things being what they are, which one of these outlooks you hold assumes a key job in how the worry in your life influences you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Outlook</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s not our feelings of anxiety that need to change, however our disposition to stretch itself, uncovers Menon, in light of the fact that how you consider pressure and the worry in your life assumes a significant job on how it influences your prosperity. She clarifies, \"It decides if the nearness of worry in your life is destructive, which can at last lead to burnout, misery, and coronary illness or whether that pressure really prompts more noteworthy prosperity and flexibility.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Science</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Research shows that when you enlighten individuals concerning the significance of stress outlooks, you urge them to pick an additionally tolerating and grasping demeanor toward the worry in their own lives, recommends Menon and thus, they really become more advantageous, more joyful, and increasingly profitable at work, even in troublesome and upsetting conditions. As indicated by inquire about at Yale University, individuals who hold increasingly a negative impression of stress and trust it ought to be diminished or stayed away from, are bound to encounter what we regularly consider as the negative results of pressure. They\'re bound to have medical issues or diseases, recommends Menon and they\'re bound to get discouraged and, are less beneficial at work. \"Be that as it may, on the opposite side, individuals who hold a progressively positive and tolerating perspective on stress are shielded from the negative impacts of</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>stress, in any event, when their lives are upsetting,\" she tells, and they\'re more beneficial and more joyful. They\'re accomplishing better grinding away and they\'re better ready to discover importance in their battles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Question</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consequently, can changing how you consider pressure make you more beneficial? Menon calls attention to that the science says \'yes\' - when you alter your perspective on stress, you can change your body\'s reaction to push. \"Research shows that pressure is really improving; in one examination at University of Wisconsin specialists followed 30,000 American grown-ups for a long time,\" she clarifies, and they found that subjects with a ton of stress had a 43 percent expanded danger of kicking the bucket - yet just in the event that they accepted pressure was unsafe. What is astounding is the individuals who encountered a ton of stress however didn\'t see worry as hurtful were not any more prone to bite the dust than the ordinary populace. Actually, Menon repeats that they had the most reduced danger of biting the dust of anybody in the investigation, including individuals who had moderately little pressure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Big Picture</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Albeit upsetting encounters are a significant piece of life, how you think and how you</p>\n<!-- /wp:paragraph -->','Let\'s Find Out How to Survive Stress','','publish','closed','closed','','lets-find-out-how-to-survive-stress','','','2020-06-04 05:14:00','2020-06-04 05:14:00','',0,'http://voleursdechevaux.be/?p=10',0,'post','',0),(11,1,'2020-06-04 05:09:52','2020-06-04 05:09:52','','GettyImages-804814600','','inherit','closed','closed','','gettyimages-804814600','','','2020-06-04 05:09:52','2020-06-04 05:09:52','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/GettyImages-804814600.jpg',0,'attachment','image/jpeg',0),(12,1,'2020-06-04 05:13:24','2020-06-04 05:13:24','<!-- wp:paragraph -->\n<p>Let\'s be honest; regardless of whether you\'re a bustling homemaker or a high flying official, the present well known mentality is to be as occupied as conceivable with consistently and minute packed with a work. However the everyday weight can incorporate with constant pressure, which whenever disregarded, can be unfavorable to our psyche, body, and soul.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Body</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While a large portion of us have worry in some structure, an unfortunate reaction to push happens when the requests of the stressor surpass a person\'s adapting capacity. While stress is really a mental perspective, as it impressively influences our physiological state. \"In an old style unpleasant circumstance, certain pressure hormones, for example, cortisol are discharged which builds the heartbeat, perspiring, anxiety, and the inclination to pee,\" with the underlying marker normally showing as a failure to rest. Over the long haul this prompts issues, for example, heartburn, causticity, ulcers, low-back torments, hypertension, coronary episode, stroke, elevated cholesterol, misery, cerebral pains, and weariness, to give some examples. Long haul pressure likewise influences our resistance and decreases our illness battling limit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In Teens</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>While the young years can be profoundly distressing, some normal stressors include: worry from school, social tension, and burdensome emotions - for instance, not having a place, self-hurt and other useless adapting systems. Another enormous one, especially appropriate to today, is online life unseemliness. While teenagers and grown-ups cover by they way they adapt to pressure, the main contrast is that grown-ups express pressure verbally while youngsters will in general disengage themselves during times of high pressure. \"This is on the grounds that young people can\'t appropriately deal with their worry because of an absence of sound adapting abilities,\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Negative Implications</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that the pressure isn\'t gotten and tended to in time, young people may use wild and damaging practices, substance misuse, and physical brutality as unfortunate adapting aptitudes. Young people\'s scholastic and extra-curricular advancement may likewise weaken if stress isn\'t taken care of fittingly.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Taking a few to get back some composure on Teen Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Keeping up viable correspondence with your teenager and embracing solid adapting aptitudes are the two best approaches to make do with stress.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be accessible - make some time regardless of how bustling the calendar is - structure openings into day by day life. Investing energy with your high schooler gives them that you care despite the fact that they are driving you away.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be reasonable and adaptable in your desires however acclaim exertion something other than results.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be tolerant and reliable during their formative stage - they are variable and attempting to understand their place on the planet - they can oppose reason and sense once in a while.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Try not to limit their emotions with expectations of them \"getting over it\". Their emotions are genuine and influencing them in manners that should be tended to.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be commonsense and useful in your methodology - they may require your astuteness and association - regardless of whether they state they don\'t.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You can\'t and ought not shield them from all anxieties and dangers. You should set cutoff points just as results to what is adequate and unsuitable at home, school, and somewhere else.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>THE MIND</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress Reactions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>At the point when stress is over the top, it brings about one of four responses - tension, unresponsiveness and wretchedness, outrage and animosity and psychological hindrance. \"Stress can be brought about by awful mishaps, occasions which challenge our cutoff points, just as inner clashes,\". \"For instance, if your supervisor scrutinizes you unreasonably, you feel the pressure.\" You need to have the option to clarify why he/she isn\'t right yet in addition have a dread of upsetting your chief and this pressure or interior clash makes you ruminate and these contemplations can rapidly winding wild: My manager believes I\'m bumbling; I won\'t get the advancement I merit. This arrangement of ruminations brings about cataclysmic reasoning, which can prompt concern, uneasiness, feeling discouraged and a sleeping disorder.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top Ways to Alleviate Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Discussion about what is focusing on you to somebody who tunes in to you, comprehends the pressure condition and thinks about you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ruminations make a \"pressure-cooker impact\". They bob around making pressure. Discharging this through talking truly makes a difference.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Most connections in life are proportional. It\'s extremely imperative to build up great interpersonal organizations with the goal that individuals might be there for us in our hour of need.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It is imperative to evacuate the wellspring of the pressure, if conceivable, by taking control and being dynamic. For instance, instead of being a casualty of tormenting in the working environment, you may decide to either place in a grumbling or move post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Interruption is a helpful strategy to maintain a strategic distance from pressure. Responding to another call or another action is frequently useful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Present DAY</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Electronic Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Advanced mobile phones, contraptions, and PCs all assist us with remaining overly associated yet at a significant expense. \"Cell phones add immensely to cutting edge worries in that the work environment and internet based life saturate our lives with the goal that we are rarely truly free,\". \"We are working or mingling 24-hours per day, checking our telephones last thing around evening time and before anything else when research shows that each time we get an email, we can take as long as 20 minutes on normal to re-center around kids, accomplices or different core interests.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Arranging</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The most ideal approach to manage cell phones is to turn them off when at home; be that as it may, this is unrealistic for a few. \"The option is to have windows of when you check your messages, for instance 9 to 9:30pm, and to take care of it for the remainder of the time,\" and make certain to abstain from utilizing your cell phone one hour before you rest.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Discovering Solutions</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Today the point is on augmenting the handiness within recent memory and pressing as much as possible from each moment of the day. So by what method can an individual discover time in the day to destress? We have to figure out how to handle the outer weights and even our own internal voices that reveal to us that to be fruitful, he says as these are old mentalities that we have learnt throughout the years that are not, at this point important. \"We should supplant these contemplations with new one\'s that help us in the genuine benefit of setting aside effort to de-stress the correct way,\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hold Your Stress with These Tips</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Practice Regular Exercise - Exercise impacts a synapse that works like an energizer on your cerebrum while diminishing muscle pressure.</li><li>Head Outside - Even five minutes in nature can help lessen pressure and lift your state of mind.</li><li>Concentrate on Your Breathing - Ideally you ought to be breathing essentially through your nose through a basic procedure called Buteyko breathing to assist you with reestablishing valuable breathing examples.</li><li>Take an interest in Activities - You Enjoy Engaging in a pastime encourages you have a good time and remove your brain from pressure.</li><li>Eat Healthy - Schedule time to eat without surging and make certain to expend new, solid, entire nourishments.</li><li>Remain Positive - Keep a rundown of all that you\'re thankful for and make a guarantee to stop any negative self-talk.</li><li>Remain Connected - Loneliness can be a significant wellspring of stress, so do some chipping in, get together with companions or take a class to meet others.</li><li>Enjoy a Reprieve or Meditate - Taking even 10 minutes to sit discreetly and shut out the turmoil around you can trigger your unwinding reaction.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The Positive Side of Stress</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Is pressure is something that should be diminished, stifled or kept away from? Or then again would we be able to acknowledge it, use it, and grasp it? Things being what they are, which one of these outlooks you hold assumes a key job in how the worry in your life influences you.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Outlook</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>It\'s not our feelings of anxiety that need to change, however our disposition to stretch itself, uncovers Menon, in light of the fact that how you consider pressure and the worry in your life assumes a significant job on how it influences your prosperity. She clarifies, \"It decides if the nearness of worry in your life is destructive, which can at last lead to burnout, misery, and coronary illness or whether that pressure really prompts more noteworthy prosperity and flexibility.\"</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Science</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Research shows that when you enlighten individuals concerning the significance of stress outlooks, you urge them to pick an additionally tolerating and grasping demeanor toward the worry in their own lives, recommends Menon and thus, they really become more advantageous, more joyful, and increasingly profitable at work, even in troublesome and upsetting conditions. As indicated by inquire about at Yale University, individuals who hold increasingly a negative impression of stress and trust it ought to be diminished or stayed away from, are bound to encounter what we regularly consider as the negative results of pressure. They\'re bound to have medical issues or diseases, recommends Menon and they\'re bound to get discouraged and, are less beneficial at work. \"Be that as it may, on the opposite side, individuals who hold a progressively positive and tolerating perspective on stress are shielded from the negative impacts of</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>stress, in any event, when their lives are upsetting,\" she tells, and they\'re more beneficial and more joyful. They\'re accomplishing better grinding away and they\'re better ready to discover importance in their battles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Question</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Consequently, can changing how you consider pressure make you more beneficial? Menon calls attention to that the science says \'yes\' - when you alter your perspective on stress, you can change your body\'s reaction to push. \"Research shows that pressure is really improving; in one examination at University of Wisconsin specialists followed 30,000 American grown-ups for a long time,\" she clarifies, and they found that subjects with a ton of stress had a 43 percent expanded danger of kicking the bucket - yet just in the event that they accepted pressure was unsafe. What is astounding is the individuals who encountered a ton of stress however didn\'t see worry as hurtful were not any more prone to bite the dust than the ordinary populace. Actually, Menon repeats that they had the most reduced danger of biting the dust of anybody in the investigation, including individuals who had moderately little pressure.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The Big Picture</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Albeit upsetting encounters are a significant piece of life, how you think and how you</p>\n<!-- /wp:paragraph -->','Let\'s Find Out How to Survive Stress','','inherit','closed','closed','','10-revision-v1','','','2020-06-04 05:13:24','2020-06-04 05:13:24','',10,'http://voleursdechevaux.be/10-revision-v1/',0,'revision','',0),(13,1,'2020-06-04 05:15:47','2020-06-04 05:15:47','<!-- wp:paragraph -->\n<p>Stress is getting otherwise called a presentation dampener for people. In any case, there is still small comprehension about how all invading the pressure issue is in the working environment, its effect on authoritative exhibition and what is truly causing the worry in any case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The unwanted certainty is that pressure is endemic in our hierarchical life. Any place we see separation among workers, a significant level of missteps, interminable degrees of client assistance, low profitability, broad waste, poor dynamic at the executives level and unsuitable initiative, you can be certain that pressure is the fundamental causal factor. At last focused on conduct and focused on believing is the central motivation behind why such a significant number of associations don\'t work close to as well as possible and why dreadfully a significant number of them come up short.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What we have to consider in the board is that individual characteristics, for example, energy, undertaking, invigoration, interest, bunch reliability, imaginative critical thinking, cooperation, calm concentration and natural reasoning are intrinsic to everybody we utilize. Be that as it may, just when they are in their common \"cerebrum state\".</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These precious human qualities involve fundamental endurance systems that are innate to us all. In any case, the essential truth is that these brilliant characteristics are commonly just accessible to us when we are in a low condition of pressure. This implies the more worry there is in the workplace the less these significant characteristics are accessible to profit the association.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Fundamentally, the potential and want for exceptionally inventive and beneficial work is now inborn in pretty much every representative on your compensation roll. As such all administrators truly need to never really improve efficiency, is to discharge the hierarchical brakes that keep individuals away from really contributing these natural characteristics to the universally useful. Evacuate the pressure and you set up a focussed, lively and venturesome work culture.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Basically, we don\'t have to inspire individuals, we simply need to quit demotivating them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress anyplace in a framework will affect the entire framework</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Stress is additionally significant from a frameworks point of view. Associations are living frameworks whose center segments are the people inside it.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Be that as it may, a framework isn\'t only an assortment of divided occasions or autonomous segments. These individuals\' connections, every day exchanges, singular desires and intentions structure the vital drive, dynamic cooperation and interconnectivity that make the framework work. The framework capacities all in all, with the segment parts quietly associated on one another for its general adequacy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A framework\'s intricate and dynamic progression of consistent intuitiveness implies any new thought, activity, response, change in capacity or change in structure that is brought into one piece of the framework will have a type of effect somewhere else in the framework. Changes swell through and over a framework simply like waves in a lake. These waves sway zones that may not in any case be evidently associated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Much the same as some other change factor referenced above, in the event that somebody some place in the association encounters a pressure reaction, at that point it will incite a wave influence over the entire framework.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The pressure reaction doesn\'t simply unfavorably impact a person\'s dynamic, thoughts, emotions, conduct and gainful movement; thanks to an association\'s dynamic intelligence and relationship, this impact at that point saturates the framework all in all and effects generally speaking execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is the reason feelings of anxiety in any association can make the entire framework fail to meet expectations. Much the same as coarseness in the machine, if the pressure is awful enough it can cause the entire framework to seize up and flop by and large. It is this knowledge that gives us a significant piece of information with respect to how to improve authoritative execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Recognize and evacuate the stressors that sway singular reasoning and execution, and you expel significant imperatives and deterrents to the exhibition of the framework all in all.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For what reason would we be able to be so certain about this?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cerebrum look into is changing the potential for hierarchical execution</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Incredibly, present day science has shown us more the human cerebrum over the most recent forty years than in all the past 300 years joined. Vitally from a business perspective, investigation into the mind (neuroscience and neurobiology), frameworks hypothesis, etc is rendering numerous conventional thoughts regarding pressure and brain research outdated.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This new understanding is thusly constraining us to change many esteemed convictions about administration, the executives control, authoritative plan, and inspiration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Excitingly, this information furnishes us with a much more clear view concerning why such a significant number of issues emerge in associations. This developing perspective on the major reasons why such a significant number of things presently turn out badly is opening up a practically boundless potential for upgrades to hierarchical execution.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Evacuating pressure factors improves singular execution by 20% - half</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This is significant news for pioneers and administrators all over. Evacuate certain key stressors that routinely pervade our associations and you improve singular execution by a factor of 20% - half and possibly much more than that.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In actuality, new information about the effect of weight on the cerebrum and the inescapable impact of a person\'s weight all in all framework gives us a plain decision. Contingent upon the kind of initiative you receive you can decide to pressure your kin into dull, conventionalist, consistence. Or on the other hand you can decide to engage more elevated levels of excitement, duty, innovativeness and keen activity.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hierarchical pressure makes an ungracious workplace</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For the most part supervisors still enormously belittle the genuine expense of pressure. The got insight is that the expenses are restricted to non-attendance, disorder and the danger of remuneration claims, in spite of the fact that these components are awful enough. Yet, work done in many associations with stress reviews show that the genuine expenses go path past this limited perspective on things.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In particular, numbness about pressure drives us accidentally to make structures, strategies, procedures and controls that make an unwelcoming working condition for ourselves, our representatives and different partners.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the normal association, stress compels or subverts savvy or gainful action at each degree of an association and over each capacity. For example:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At vital level pressure adds to misguided thinking, uncouth or ill-advised dynamic and exploitative conduct.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At the administration level pressure drives surged and lacking operational arranging, destructive picture the board, inadequate examination, defective critical thinking, broken dynamic, feeble relationship building and de-persuading authority.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• At operational level pressure incites inauthentic working connections, individual clashes, mishaps, exorbitant slip-ups and revamp, imperfect critical thinking, dormancy, lack of care toward associates\' and clients\' needs, low innovativeness, squander, protection from change and unintelligible cooperation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hierarchical pressure is of vital significance</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the off chance that, as a pioneer, you are adding to making a distressing workplace, at that point you are destroying the odds of your gathering being gainful.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The significant ramifications of this is the effect of authoritative weight on execution has happened to key significance. The comprehension of stress is accordingly an inborn piece of any supervisor or pioneer\'s toolbox. Stress the executives is not, at this point a fringe matter best left to the HR office or some redistributed worker help program (EAP).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A key range of abilities for any pioneer from CEO down to manager level is to know the accompanying:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The effect of weight on their own dynamic</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The effect the pressure reaction has on work conduct</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• What expenses emerge in the framework when stress kicks in and how best to recognize and quantify these expenses</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• Why and how the individual pressure reaction cripples mental and enthusiastic working at work.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• How a comprehension of enthusiastic needs abstains from setting off a pressure reaction</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>• The inborn individual assets that, are accessible any place people appreciate a low-focused on constructive cerebrum state.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The great news is that you don\'t need to be a superhuman, star, or have moxy, driving desire, or even a ground-breaking character to be a compelling pioneer. A long way from it, truly these attributes may really impede drawing out the maximum capacity of your gathering as they can hinder your capacity to empower powerful and unconstrained gathering joint effort.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top down order and control triggers a pressure reaction</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Everything science currently informs us concerning the human physiology, brain science, stress and correspondence shows that top down order and control the executives is regularly counter profitable. The explanation is that top down order and control is consistently obligated to trigger a crippling pressure reaction. Then again, empowering coordinated effort or collaboration is a progressively normal approach to run an association, as it abstains from setting off this pressure reaction thus empowers the ideal working of the human mind and enthusiastic resources.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The essential reasons that top down order and control actuate pressure are both the dread factor and the institutional negligence appeared for others\' enthusiastic and mental needs. When the pressure reaction is activated it consequently lessens numerous representatives\' capacity and even want to work viably in an entire wide range of ways.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Then again, a collective style of working assists individuals with meeting a scope of their basic organic needs. Addressing these necessities evacuates various distinctive pressure triggers and this empowers the releasing of the inactive abilities and inventive intensity of everybody included.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Top down order and control isn\'t the main source of worry obviously. Pioneers should be aw</p>\n<!-- /wp:paragraph -->','Stress, The Nemesis of Organisational Performance','','inherit','closed','closed','','9-revision-v1','','','2020-06-04 05:15:47','2020-06-04 05:15:47','',9,'http://voleursdechevaux.be/9-revision-v1/',0,'revision','',0),(14,1,'2020-06-04 05:22:58','2020-06-04 05:22:58','{\"id\":\"14\",\"field_id\":3,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"first-last\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"confirmation_placeholder\":\"\",\"default_value\":\"\",\"css\":\"\"},{\"id\":\"2\",\"type\":\"textarea\",\"label\":\"Comment or Message\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"placeholder\":\"\",\"limit_count\":\"1\",\"limit_mode\":\"characters\",\"default_value\":\"\",\"css\":\"\"}],\"settings\":{\"form_title\":\"Simple Contact Form\",\"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: Simple Contact Form\",\"sender_name\":\"www.voleursdechevaux.be\",\"sender_address\":\"{admin_email}\",\"replyto\":\"{field_id=\\\"1\\\"}\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"contact\"}}','Simple Contact Form','','publish','closed','closed','','simple-contact-form','','','2020-06-04 05:23:30','2020-06-04 05:23:30','',0,'http://voleursdechevaux.be/?post_type=wpforms&p=14',0,'wpforms','',0),(15,1,'2020-06-04 05:23:10','2020-06-04 05:23:10','{\"id\":\"15\",\"field_id\":2,\"fields\":[{\"id\":\"0\",\"type\":\"name\",\"label\":\"Name\",\"format\":\"simple\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"simple_placeholder\":\"\",\"simple_default\":\"\",\"first_placeholder\":\"\",\"first_default\":\"\",\"middle_placeholder\":\"\",\"middle_default\":\"\",\"last_placeholder\":\"\",\"last_default\":\"\",\"css\":\"\"},{\"id\":\"1\",\"type\":\"email\",\"label\":\"Email\",\"description\":\"\",\"required\":\"1\",\"size\":\"large\",\"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}\",\"subject\":\"New Newsletter Signup Form Entry\",\"sender_name\":\"www.voleursdechevaux.be\",\"sender_address\":\"{admin_email}\",\"replyto\":\"\",\"message\":\"{all_fields}\"}},\"confirmations\":{\"1\":{\"type\":\"message\",\"message\":\"<p>Thanks for contacting us! We will be in touch with you shortly.<\\/p>\",\"message_scroll\":\"1\",\"redirect\":\"\"}}},\"meta\":{\"template\":\"subscribe\"}}','Newsletter Signup Form','','publish','closed','closed','','newsletter-signup-form','','','2020-06-04 05:24:03','2020-06-04 05:24:03','',0,'http://voleursdechevaux.be/?post_type=wpforms&p=15',0,'wpforms','',0),(16,1,'2020-06-04 05:26:07','2020-06-04 05:26:07','','Blog','','publish','closed','closed','','blog','','','2020-06-04 05:26:07','2020-06-04 05:26:07','',0,'http://voleursdechevaux.be/?page_id=16',0,'page','',0),(17,1,'2020-06-04 05:26:38','2020-06-04 05:26:38','<!-- wp:paragraph -->\n<p>[wpforms id=\"14\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Contact Us','','publish','closed','closed','','contact-us','','','2020-06-04 05:26:38','2020-06-04 05:26:38','',0,'http://voleursdechevaux.be/?page_id=17',0,'page','',0),(18,1,'2020-06-04 05:34:48','2020-06-04 05:34:48','<!-- wp:paragraph -->\n<p>Please read these Terms of Use (“Terms”, “Terms of Use”) carefully before using the http://voleursdechevaux.be website (the “Service”) operated by www.voleursdechevaux.be(“us”, “we”, or “our”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of www.voleursdechevaux.be and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by www.voleursdechevaux.be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>www.voleursdechevaux.be has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that www.voleursdechevaux.be shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Termination</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your use of the Service is at your sole risk. The Service is provided on an “AS IS” and “AS AVAILABLE” basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Belgiumwithout regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','publish','closed','closed','','terms-and-conditions','','','2020-06-04 05:34:48','2020-06-04 05:34:48','',0,'http://voleursdechevaux.be/?page_id=18',0,'page','',0),(19,1,'2020-06-04 05:31:32','2020-06-04 05:31:32','<!-- wp:paragraph -->\n<p>www.voleursdechevaux.be (“us”, “we”, or “our”) operates the www.voleursdechevaux.be website (the “Service”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at http://voleursdechevaux.be</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (“Personal Information”) may include, but is not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information that your browser sends whenever you visit our Service (“Log Data”). This Log Data may include information such as your computer’s Internet Protocol (“IP”) address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer’s hard drive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use “cookies” to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party’s site. We strongly advise you to review the Privacy Policy of every site you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children’s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (“Children”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','privacy-policy-2','','','2020-06-04 05:31:32','2020-06-04 05:31:32','',0,'http://voleursdechevaux.be/?page_id=19',0,'page','',0),(20,1,'2020-06-04 05:26:07','2020-06-04 05:26:07','','Blog','','inherit','closed','closed','','16-revision-v1','','','2020-06-04 05:26:07','2020-06-04 05:26:07','',16,'http://voleursdechevaux.be/16-revision-v1/',0,'revision','',0),(21,1,'2020-06-04 05:26:38','2020-06-04 05:26:38','<!-- wp:paragraph -->\n<p>[wpforms id=\"14\" title=\"false\" description=\"false\"]</p>\n<!-- /wp:paragraph -->','Contact Us','','inherit','closed','closed','','17-revision-v1','','','2020-06-04 05:26:38','2020-06-04 05:26:38','',17,'http://voleursdechevaux.be/17-revision-v1/',0,'revision','',0),(22,1,'2020-06-04 05:31:32','2020-06-04 05:31:32','<!-- wp:paragraph -->\n<p>www.voleursdechevaux.be (“us”, “we”, or “our”) operates the www.voleursdechevaux.be website (the “Service”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>This page informs you of our policies regarding the collection, use and disclosure of Personal Information when you use our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We will not use or share your information with anyone except as described in this Privacy Policy.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use your Personal Information for providing and improving the Service. By using the Service, you agree to the collection and use of information in accordance with this policy. Unless otherwise defined in this Privacy Policy, terms used in this Privacy Policy have the same meanings as in our Terms and Conditions, accessible at http://voleursdechevaux.be</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Information Collection And Use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>While using our Service, we may ask you to provide us with certain personally identifiable information that can be used to contact or identify you. Personally identifiable information (“Personal Information”) may include, but is not limited to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Name</li><li>Email address</li><li>Address</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Log Data</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We collect information that your browser sends whenever you visit our Service (“Log Data”). This Log Data may include information such as your computer’s Internet Protocol (“IP”) address, browser type, browser version, the pages of our Service that you visit, the time and date of your visit, the time spent on those pages and other statistics.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cookies are files with small amount of data, which may include an anonymous unique identifier. Cookies are sent to your browser from a web site and stored on your computer’s hard drive.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We use “cookies” to collect information. You can instruct your browser to refuse all cookies or to indicate when a cookie is being sent. However, if you do not accept cookies, you may not be able to use some portions of our Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Service Providers</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may employ third party companies and individuals to facilitate our Service, to provide the Service on our behalf, to perform Service-related services or to assist us in analyzing how our Service is used.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>These third parties have access to your Personal Information only to perform these tasks on our behalf and are obligated not to disclose or use it for any other purpose.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Security</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The security of your Personal Information is important to us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While we strive to use commercially acceptable means to protect your Personal Information, we cannot guarantee its absolute security.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to other sites that are not operated by us. If you click on a third party link, you will be directed to that third party’s site. We strongly advise you to review the Privacy Policy of every site you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We have no control over, and assume no responsibility for the content, privacy policies or practices of any third party sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Children’s Privacy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service does not address anyone under the age of 18 (“Children”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We do not knowingly collect personally identifiable information from children under 18. If you are a parent or guardian and you are aware that your child has provided us with Personal Information, please contact us. If we discover that a child under 18 has provided us with Personal Information, we will delete such information from our servers immediately.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Compliance With Laws</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We will disclose your Personal Information where required to do so by law or subpoena.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes To This Privacy Policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may update our Privacy Policy from time to time. We will notify you of any changes by posting the new Privacy Policy on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about this Privacy Policy, please contact us.</p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','19-revision-v1','','','2020-06-04 05:31:32','2020-06-04 05:31:32','',19,'http://voleursdechevaux.be/19-revision-v1/',0,'revision','',0),(23,1,'2020-06-04 05:34:48','2020-06-04 05:34:48','<!-- wp:paragraph -->\n<p>Please read these Terms of Use (“Terms”, “Terms of Use”) carefully before using the http://voleursdechevaux.be website (the “Service”) operated by www.voleursdechevaux.be(“us”, “we”, or “our”).</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Your access to and use of the Service is conditioned on your acceptance of and compliance with these Terms. These Terms apply to all visitors, users and others who access or use the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By accessing or using the Service you agree to be bound by these Terms. If you disagree with any part of the terms then you may not access the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Intellectual Property</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Service and its original content, features and functionality are and will remain the exclusive property of www.voleursdechevaux.be and its licensors.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Links To Other Web Sites</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our Service may contain links to third-party web sites or services that are not owned or controlled by www.voleursdechevaux.be.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>www.voleursdechevaux.be has no control over, and assumes no responsibility for, the content, privacy policies, or practices of any third party web sites or services. You further acknowledge and agree that www.voleursdechevaux.be shall not be responsible or liable, directly or indirectly, for any damage or loss caused or alleged to be caused by or in connection with use of or reliance on any such content, goods or services available on or through any such web sites or services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We strongly advise you to read the terms and conditions and privacy policies of any third-party web sites or services that you visit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Termination</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We may terminate or suspend access to our Service immediately, without prior notice or liability, for any reason whatsoever, including without limitation if you breach the Terms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>All provisions of the Terms which by their nature should survive termination shall survive termination, including, without limitation, ownership provisions, warranty disclaimers, indemnity and limitations of liability.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Disclaimer</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your use of the Service is at your sole risk. The Service is provided on an “AS IS” and “AS AVAILABLE” basis. The Service is provided without warranties of any kind, whether express or implied, including, but not limited to, implied warranties of merchantability, fitness for a particular purpose, non-infringement or course of performance.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Governing Law</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These Terms shall be governed and construed in accordance with the laws of Belgiumwithout regard to its conflict of law provisions.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our failure to enforce any right or provision of these Terms will not be considered a waiver of those rights. If any provision of these Terms is held to be invalid or unenforceable by a court, the remaining provisions of these Terms will remain in effect. These Terms constitute the entire agreement between us regarding our Service, and supersede and replace any prior agreements we might have between us regarding the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Changes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We reserve the right, at our sole discretion, to modify or replace these Terms at any time. If a revision is material we will try to provide at least days notice prior to any new terms taking effect. What constitutes a material change will be determined at our sole discretion.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By continuing to access or use our Service after those revisions become effective, you agree to be bound by the revised terms. If you do not agree to the new terms, please stop using the Service.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Contact Us</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>If you have any questions about these Terms, please contact us.</p>\n<!-- /wp:paragraph -->','Terms and Conditions','','inherit','closed','closed','','18-revision-v1','','','2020-06-04 05:34:48','2020-06-04 05:34:48','',18,'http://voleursdechevaux.be/18-revision-v1/',0,'revision','',0),(24,1,'2020-06-04 05:35:43','2020-06-04 05:35:43','','Home','','publish','closed','closed','','home','','','2020-06-04 05:35:54','2020-06-04 05:35:54','',0,'http://voleursdechevaux.be/?p=24',1,'nav_menu_item','',0),(25,1,'2020-06-04 05:35:43','2020-06-04 05:35:43',' ','','','publish','closed','closed','','25','','','2020-06-04 05:35:54','2020-06-04 05:35:54','',0,'http://voleursdechevaux.be/?p=25',2,'nav_menu_item','',0),(26,1,'2020-06-04 05:35:43','2020-06-04 05:35:43',' ','','','publish','closed','closed','','26','','','2020-06-04 05:35:54','2020-06-04 05:35:54','',0,'http://voleursdechevaux.be/?p=26',3,'nav_menu_item','',0),(27,1,'2020-06-04 05:35:43','2020-06-04 05:35:43',' ','','','publish','closed','closed','','27','','','2020-06-04 05:35:54','2020-06-04 05:35:54','',0,'http://voleursdechevaux.be/?p=27',4,'nav_menu_item','',0),(28,1,'2020-06-04 05:35:43','2020-06-04 05:35:43',' ','','','publish','closed','closed','','28','','','2020-06-04 05:35:54','2020-06-04 05:35:54','',0,'http://voleursdechevaux.be/?p=28',5,'nav_menu_item','',0),(29,1,'2020-06-04 05:52:29','2020-06-04 05:52:29','','logo','','inherit','closed','closed','','logo','','','2020-06-04 05:52:29','2020-06-04 05:52:29','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/logo.png',0,'attachment','image/png',0),(30,1,'2020-06-04 05:53:10','2020-06-04 05:53:10','http://voleursdechevaux.be/wp-content/uploads/2020/06/cropped-logo.png','cropped-logo.png','','inherit','closed','closed','','cropped-logo-png','','','2020-06-04 05:53:10','2020-06-04 05:53:10','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/cropped-logo.png',0,'attachment','image/png',0),(31,1,'2020-06-04 05:53:48','2020-06-04 05:53:48','http://voleursdechevaux.be/wp-content/uploads/2020/06/cropped-logo-1.png','cropped-logo-1.png','','inherit','closed','closed','','cropped-logo-1-png','','','2020-06-04 05:53:48','2020-06-04 05:53:48','',0,'http://voleursdechevaux.be/wp-content/uploads/2020/06/cropped-logo-1.png',0,'attachment','image/png',0),(36,1,'2020-06-04 06:01:42','2020-06-04 06:01:42','.site-info::after{\n content: \'Copyright 2020, All right reserved.\';\n}\n\n.site-info > *{\n display: none;\n}\n\n.entry-content a.read-more-text, .entry-content a.read-more-text{\n display: none;\n}\n\n.entry-content{\n text-align: justify;\n}\n\n.entry-meta{\n display: none;\n}\n\n.ct-carousel-inner {\n position: relative;\n height: 345px;\n overflow: hidden;\n}\n\n.custom-logo{\n width: 150px;\n}','blog-belt','','publish','closed','closed','','blog-belt','','','2020-06-04 06:15:39','2020-06-04 06:15:39','',0,'http://voleursdechevaux.be/blog-belt/',0,'custom_css','',0),(37,1,'2020-06-04 06:01:42','2020-06-04 06:01:42','.site-info::after{\n content: \'Copyright 2020, All right reserved.\';\n}\n\n.site-info > *{\n display: none;\n}','blog-belt','','inherit','closed','closed','','36-revision-v1','','','2020-06-04 06:01:42','2020-06-04 06:01:42','',36,'http://voleursdechevaux.be/36-revision-v1/',0,'revision','',0),(39,1,'2020-06-04 06:06:31','2020-06-04 06:06:31','.site-info::after{\n content: \'Copyright 2020, All right reserved.\';\n}\n\n.site-info > *{\n display: none;\n}\n\n.entry-content a.read-more-text, .entry-content a.read-more-text{\n display: none;\n}\n\n.entry-content{\n text-align: justify;\n}\n\n.entry-meta{\n display: none;\n}','blog-belt','','inherit','closed','closed','','36-revision-v1','','','2020-06-04 06:06:31','2020-06-04 06:06:31','',36,'http://voleursdechevaux.be/36-revision-v1/',0,'revision','',0),(41,1,'2020-06-04 06:10:41','2020-06-04 06:10:41','.site-info::after{\n content: \'Copyright 2020, All right reserved.\';\n}\n\n.site-info > *{\n display: none;\n}\n\n.entry-content a.read-more-text, .entry-content a.read-more-text{\n display: none;\n}\n\n.entry-content{\n text-align: justify;\n}\n\n.entry-meta{\n display: none;\n}\n\n.ct-carousel-inner {\n position: relative;\n height: 345px;\n overflow: hidden;\n}','blog-belt','','inherit','closed','closed','','36-revision-v1','','','2020-06-04 06:10:41','2020-06-04 06:10:41','',36,'http://voleursdechevaux.be/36-revision-v1/',0,'revision','',0),(43,1,'2020-06-04 06:13:44','2020-06-04 06:13:44','','facebook','','publish','closed','closed','','facebook','','','2020-06-04 06:13:44','2020-06-04 06:13:44','',0,'http://voleursdechevaux.be/facebook/',1,'nav_menu_item','',0),(44,1,'2020-06-04 06:13:44','2020-06-04 06:13:44','','twitter','','publish','closed','closed','','twitter','','','2020-06-04 06:13:44','2020-06-04 06:13:44','',0,'http://voleursdechevaux.be/twitter/',2,'nav_menu_item','',0),(45,1,'2020-06-04 06:13:44','2020-06-04 06:13:44','','linkedin','','publish','closed','closed','','linkedin','','','2020-06-04 06:13:44','2020-06-04 06:13:44','',0,'http://voleursdechevaux.be/linkedin/',3,'nav_menu_item','',0),(46,1,'2020-06-04 06:13:44','2020-06-04 06:13:44','','youtube','','publish','closed','closed','','youtube','','','2020-06-04 06:13:44','2020-06-04 06:13:44','',0,'http://voleursdechevaux.be/youtube/',4,'nav_menu_item','',0),(50,1,'2020-06-04 06:15:39','2020-06-04 06:15:39','.site-info::after{\n content: \'Copyright 2020, All right reserved.\';\n}\n\n.site-info > *{\n display: none;\n}\n\n.entry-content a.read-more-text, .entry-content a.read-more-text{\n display: none;\n}\n\n.entry-content{\n text-align: justify;\n}\n\n.entry-meta{\n display: none;\n}\n\n.ct-carousel-inner {\n position: relative;\n height: 345px;\n overflow: hidden;\n}\n\n.custom-logo{\n width: 150px;\n}','blog-belt','','inherit','closed','closed','','36-revision-v1','','','2020-06-04 06:15:39','2020-06-04 06:15:39','',36,'http://voleursdechevaux.be/36-revision-v1/',0,'revision','',0);
/*!40000 ALTER TABLE `wp_posts` 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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_relationships` (
`object_id` bigint unsigned NOT NULL DEFAULT '0',
`term_taxonomy_id` bigint unsigned NOT NULL DEFAULT '0',
`term_order` int 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 (9,1,0),(9,3,0),(9,4,0),(9,5,0),(10,1,0),(10,3,0),(10,4,0),(10,5,0),(24,6,0),(25,6,0),(26,6,0),(27,6,0),(28,6,0),(43,7,0),(44,7,0),(45,7,0),(46,7,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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_term_taxonomy` (
`term_taxonomy_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`taxonomy` varchar(32) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`description` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`parent` bigint unsigned NOT NULL DEFAULT '0',
`count` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_taxonomy_id`),
UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=8 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,2),(2,2,'category','',0,0),(3,3,'category','',0,2),(4,4,'category','',0,2),(5,5,'category','',0,2),(6,6,'nav_menu','',0,5),(7,7,'nav_menu','',0,4);
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_termmeta` (
`meta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`term_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_terms` (
`term_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`slug` varchar(200) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`term_group` bigint NOT NULL DEFAULT '0',
PRIMARY KEY (`term_id`),
KEY `slug` (`slug`(191)),
KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=8 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,'General','general',0),(3,'News','news',0),(4,'Blogging','blogging',0),(5,'Stress','stress',0),(6,'Main Menu','main-menu',0),(7,'social Menu','social-menu',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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_usermeta` (
`umeta_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_id` bigint unsigned NOT NULL DEFAULT '0',
`meta_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`meta_value` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`umeta_id`),
KEY `user_id` (`user_id`),
KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=23 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','wpadmin'),(2,1,'first_name','Arthur'),(3,1,'last_name','Russell'),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'wp_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'wp_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','1'),(16,1,'session_tokens','a:3:{s:64:\"4c2518bf29f220d2e72df58f28f4daac2bf9dafeba31d1855942abe00d7191b9\";a:4:{s:10:\"expiration\";i:1591378637;s:2:\"ip\";s:14:\"54.166.206.176\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Windows; U; Windows NT 6.1; es-AR; rv:1.9) Gecko/2008051206 Firefox/3.0\";s:5:\"login\";i:1590169037;}s:64:\"5f895da3074d34d3c0c679713fe7e706974850dc7ccb093ce3be6df0d2986a8f\";a:4:{s:10:\"expiration\";i:1591639264;s:2:\"ip\";s:13:\"54.80.119.236\";s:2:\"ua\";s:84:\"Mozilla/5.0 (Windows; U; Windows NT 6.1; es-AR; rv:1.9) Gecko/2008051206 Firefox/3.0\";s:5:\"login\";i:1590429664;}s:64:\"776d821e1546dc62a8a746c2d99218b039a3c53d79e2850ac4adb8e7c2b87580\";a:4:{s:10:\"expiration\";i:1591418329;s:2:\"ip\";s:13:\"27.147.202.96\";s:2:\"ua\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.97 Safari/537.36\";s:5:\"login\";i:1591245529;}}'),(17,1,'wp_dashboard_quick_press_last_post_id','4'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:12:\"27.147.202.0\";}'),(19,1,'wp_user-settings','libraryContent=browse'),(20,1,'wp_user-settings-time','1591247609'),(21,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\";}'),(22,1,'metaboxhidden_nav-menus','a:2:{i:0;s:12:\"add-post_tag\";i:1;s:15:\"add-post_format\";}');
/*!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 */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_users` (
`ID` bigint unsigned NOT NULL AUTO_INCREMENT,
`user_login` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_pass` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_nicename` varchar(50) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_email` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_url` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
`user_activation_key` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`user_status` int NOT NULL DEFAULT '0',
`display_name` varchar(250) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci 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=2 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,'wpadmin','$P$BNAiucmUZUTVb9zEITMxfA3r6ZTcAN0','wpadmin','[email protected]','http://voleursdechevaux.be','2020-04-23 18:24:32','',0,'Arthur Russell');
/*!40000 ALTER TABLE `wp_users` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpforms_tasks_meta`
--
DROP TABLE IF EXISTS `wp_wpforms_tasks_meta`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpforms_tasks_meta` (
`id` bigint NOT NULL AUTO_INCREMENT,
`action` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`data` longtext CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL,
`date` datetime NOT NULL,
PRIMARY KEY (`id`)
) 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_wpforms_tasks_meta`
--
LOCK TABLES `wp_wpforms_tasks_meta` WRITE;
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` DISABLE KEYS */;
INSERT INTO `wp_wpforms_tasks_meta` VALUES (1,'wpforms_process_entry_emails_meta_cleanup','Wzg2NDAwXQ==','2021-10-05 01:48:04');
/*!40000 ALTER TABLE `wp_wpforms_tasks_meta` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_keyword_select_links`
--
DROP TABLE IF EXISTS `wp_wpil_keyword_select_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_keyword_select_links` (
`id` int unsigned NOT NULL AUTO_INCREMENT,
`keyword_id` int unsigned NOT NULL,
`post_id` int unsigned NOT NULL,
`post_type` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
`sentence_text` text COLLATE utf8mb4_unicode_ci,
`case_keyword` text COLLATE utf8mb4_unicode_ci,
`meta_data` text COLLATE utf8mb4_unicode_ci,
PRIMARY KEY (`id`),
KEY `keyword_id` (`keyword_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_keyword_select_links`
--
LOCK TABLES `wp_wpil_keyword_select_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_keyword_select_links` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `wp_wpil_report_links`
--
DROP TABLE IF EXISTS `wp_wpil_report_links`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!50503 SET character_set_client = utf8mb4 */;
CREATE TABLE `wp_wpil_report_links` (
`link_id` bigint unsigned NOT NULL AUTO_INCREMENT,
`post_id` bigint unsigned NOT NULL,
`clean_url` text COLLATE utf8mb4_unicode_ci,
`raw_url` text COLLATE utf8mb4_unicode_ci,
`host` text COLLATE utf8mb4_unicode_ci,
`anchor` text COLLATE utf8mb4_unicode_ci,
`internal` tinyint(1) DEFAULT '0',
`has_links` tinyint(1) NOT NULL DEFAULT '0',
`post_type` text COLLATE utf8mb4_unicode_ci,
`location` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
PRIMARY KEY (`link_id`),
KEY `post_id` (`post_id`),
KEY `clean_url` (`clean_url`(500))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `wp_wpil_report_links`
--
LOCK TABLES `wp_wpil_report_links` WRITE;
/*!40000 ALTER TABLE `wp_wpil_report_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `wp_wpil_report_links` 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-03-29 8:49:59